Merge pull request #11751 from diegosouzapw/test/v3851-tiered-rotation-timeout

test(auto-combo): tolerate full-suite rotation load
This commit is contained in:
Diego Rodrigues de Sa e Souza
2026-08-27 02:02:24 -03:00
committed by GitHub

View File

@@ -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", () => {