fix(test): honest budget for the suite's one headed persistent-context launch

The launchHeaded/handoff parity test cold-launches a HEADED Chromium — 8-25s
on macOS, worse on the first launch of a freshly downloaded bundle (XProtect
scans it, the #2554 class) and under shard concurrency. bun's 5s default made
it the suite's most reliable false negative: it timed out identically on the
pre-wave baseline run of pristine main. 45s budget; passes 15/15.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Garry Tan
2026-08-16 11:35:23 -07:00
co-authored by Claude Fable 5
parent 4da5be24a6
commit fb66780112
+7 -1
View File
@@ -315,5 +315,11 @@ describe('applyStealth — persistent context (headed + handoff parity)', () =>
await ctx.close();
fs.rmSync(userDataDir, { recursive: true, force: true });
}
});
}, 45000);
// ^ 45s: this is the one HEADED persistent-context launch in the free
// suite. A cold headed launch on macOS runs 8-25s — worse on the first
// launch of a freshly downloaded Chromium (XProtect scans the new bundle,
// the #2554 class) and under shard concurrency. bun's 5s default made this
// the suite's most reliable false-negative: it timed out on the pre-wave
// baseline run of main too, and passes at 15/15 with an honest budget.
});