From 8f0b2d8ba555fea81d724411980239a73e4fa66f Mon Sep 17 00:00:00 2001 From: Joey Krug Date: Sat, 14 Mar 2026 18:51:46 -0400 Subject: [PATCH] test: fix run-loop debounce mock typing --- src/cli/gateway-cli/run-loop.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/gateway-cli/run-loop.test.ts b/src/cli/gateway-cli/run-loop.test.ts index 66aba21375d..ded7aaff4d7 100644 --- a/src/cli/gateway-cli/run-loop.test.ts +++ b/src/cli/gateway-cli/run-loop.test.ts @@ -37,7 +37,7 @@ const getActiveEmbeddedRunCount = vi.fn(() => 0); const waitForActiveEmbeddedRuns = vi.fn(async (_timeoutMs: number) => ({ drained: true, })); -const flushAllInboundDebouncers = vi.fn(async () => 0); +const flushAllInboundDebouncers = vi.fn(async (_options?: { timeoutMs?: number }) => 0); const waitForFollowupQueueDrain = vi.fn(async (_timeoutMs: number) => ({ drained: true, remaining: 0,