From ad3e293f9fefca6b30b8eeccbf9ec48326587701 Mon Sep 17 00:00:00 2001 From: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com> Date: Thu, 27 Aug 2026 01:41:30 -0300 Subject: [PATCH] test(auto-combo): tolerate full-suite rotation load --- tests/unit/autoCombo/tieredRotation.test.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/unit/autoCombo/tieredRotation.test.ts b/tests/unit/autoCombo/tieredRotation.test.ts index ae5142a7d5..62420ad164 100644 --- a/tests/unit/autoCombo/tieredRotation.test.ts +++ b/tests/unit/autoCombo/tieredRotation.test.ts @@ -194,11 +194,11 @@ describe("Per-Connection Rotation", () => { } expect(seenConnections.size).toBeGreaterThanOrEqual(10); }, - // 200 synchronous selectProvider() calls over a 43-connection pool are CPU-bound and - // vitest's 5000ms default is too tight under shared-devbox contention (load avg 40+ - // observed alongside parallel test/tsc/lint runs) — the assertion itself is unchanged, - // only the execution-time budget is widened. Refs #9985. - 20000 + // 200 synchronous selectProvider() calls over a 43-connection pool are CPU-bound and can + // exceed 20s under the full Vitest worker load on the validation VPS, while the isolated + // file remains green. The assertion is unchanged; only the execution budget is widened. + // Refs #9985. + 60000 ); it("different combos maintain independent round-robin state", () => {