Skip to content

Commit b3a6f30

Browse files
committed
chore: disable chromium sandbox in tests on all CI platforms
The 2026-07-08 Playwright roll enables the chromium sandbox by default for the default MCP session; pass --no-sandbox on all CI platforms (previously Linux-only) so Windows CI does not hang on browser launch.
1 parent 164b43f commit b3a6f30

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/fixtures.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export const test = baseTest.extend<TestFixtures & TestOptions, WorkerFixtures>(
8080
await use(async options => {
8181
const cwd = testInfo.outputPath();
8282
const args: string[] = mcpArgs ?? [];
83-
if (process.env.CI && process.platform === 'linux')
83+
if (process.env.CI)
8484
args.push('--no-sandbox');
8585
if (mcpHeadless)
8686
args.push('--headless');

0 commit comments

Comments
 (0)