From 1d9199b5292e1f6913eb05555f1be8388b6c00a4 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 10 Jan 2026 23:46:07 +0100 Subject: [PATCH] style(test): format update-cli test --- src/cli/update-cli.test.ts | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/cli/update-cli.test.ts b/src/cli/update-cli.test.ts index 8be638001..46cae63ad 100644 --- a/src/cli/update-cli.test.ts +++ b/src/cli/update-cli.test.ts @@ -26,15 +26,13 @@ vi.mock("../runtime.js", () => ({ })); describe("update-cli", () => { - it( - "exports updateCommand and registerUpdateCli", - async () => { - const { updateCommand, registerUpdateCli } = await import("./update-cli.js"); - expect(typeof updateCommand).toBe("function"); - expect(typeof registerUpdateCli).toBe("function"); - }, - 20_000, - ); + it("exports updateCommand and registerUpdateCli", async () => { + const { updateCommand, registerUpdateCli } = await import( + "./update-cli.js" + ); + expect(typeof updateCommand).toBe("function"); + expect(typeof registerUpdateCli).toBe("function"); + }, 20_000); it("updateCommand runs update and outputs result", async () => { const { runGatewayUpdate } = await import("../infra/update-runner.js");