fix(test): increase timeouts for CI-flaky polling tests
- runner.test.ts: waitForEventProcessorShutdown timeout 50ms → 500ms (50ms was consistently too tight for CI runners) - tools.test.ts: MAX_POLL_TIME_MS 2000ms → 8000ms (polling timed out at ~2009ms on CI due to resource contention)
This commit is contained in:
@@ -107,7 +107,7 @@ describe("waitForEventProcessorShutdown", () => {
|
||||
const eventProcessor = new Promise<void>(() => {})
|
||||
const spy = spyOn(console, "log").mockImplementation(() => {})
|
||||
consoleLogSpy = spy
|
||||
const timeoutMs = 50
|
||||
const timeoutMs = 500
|
||||
const start = performance.now()
|
||||
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user