style: tidy imports and formatting

This commit is contained in:
Peter Steinberger
2026-01-03 12:35:09 +00:00
parent 933bee220f
commit 72c0aa63fb
6 changed files with 15 additions and 9 deletions

View File

@@ -393,8 +393,9 @@ describe("Nix integration (U3, U5, U9)", () => {
describe("U6: gateway port resolution", () => {
it("uses default when env and config are unset", async () => {
await withEnvOverride({ CLAWDIS_GATEWAY_PORT: undefined }, async () => {
const { DEFAULT_GATEWAY_PORT, resolveGatewayPort } =
await import("./config.js");
const { DEFAULT_GATEWAY_PORT, resolveGatewayPort } = await import(
"./config.js"
);
expect(resolveGatewayPort({})).toBe(DEFAULT_GATEWAY_PORT);
});
});