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:
YeonGyu-Kim
2026-02-15 19:35:44 +09:00
parent 11586445cf
commit 96a67e2d4e
2 changed files with 2 additions and 2 deletions

View File

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