fix(qa): extend config cleanup Windows budget

This commit is contained in:
Vincent Koc
2026-05-25 16:19:31 +02:00
parent e97e831c12
commit 8a93851ee2
2 changed files with 2 additions and 2 deletions
@@ -180,7 +180,7 @@ describe("qa suite gateway helpers", () => {
raw: expect.stringContaining('"deny"'),
baseHash: "hash-1",
}),
{ timeoutMs: 90_000 },
{ timeoutMs: 180_000 },
);
expect(waitReady).toHaveBeenCalledWith({
gateway: env.gateway,
@@ -275,7 +275,7 @@ async function runConfigMutation(params: {
restartDelayMs?: number;
}) {
const restartDelayMs = params.restartDelayMs ?? 1_000;
const timeoutMs = liveTurnTimeoutMs(params.env, 90_000);
const timeoutMs = liveTurnTimeoutMs(params.env, 180_000);
let lastConflict: unknown = null;
for (let attempt = 1; attempt <= 8; attempt += 1) {
const snapshot = await readConfigSnapshot(params.env);