test: fix run-loop debounce mock typing

This commit is contained in:
Joey Krug 2026-03-14 18:51:46 -04:00
parent 324c43931b
commit 8f0b2d8ba5

View File

@ -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,