test: extend vitest timeouts

This commit is contained in:
Peter Steinberger
2026-01-16 03:11:02 +00:00
parent 16bc4cdef3
commit f449115ec5
4 changed files with 5 additions and 4 deletions

View File

@@ -116,7 +116,7 @@ describe("gateway-cli coverage", () => {
expect(callGateway).toHaveBeenCalledTimes(1);
expect(runtimeLogs.join("\n")).toContain('"ok": true');
}, 15_000);
}, 30_000);
it("registers gateway status and routes to gatewayStatusCommand", async () => {
runtimeLogs.length = 0;
@@ -131,7 +131,7 @@ describe("gateway-cli coverage", () => {
await program.parseAsync(["gateway", "status", "--json"], { from: "user" });
expect(gatewayStatusCommand).toHaveBeenCalledTimes(1);
}, 15_000);
}, 30_000);
it("registers gateway discover and prints JSON", async () => {
runtimeLogs.length = 0;