Skip to content

Commit

Permalink
chore: try windows workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister committed Sep 30, 2024
1 parent 41f3848 commit 131d375
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ export async function withBrowserApp(
}, await app.handler());

const browser = await launch({
args: ["--no-sandbox"],
args: [
"--no-sandbox",
// https://github.com/puppeteer/puppeteer/issues/12857
"--enable-features=NetworkServiceInProcess2",
],
headless: !Deno.args.includes("--headful"),
});

Expand Down

0 comments on commit 131d375

Please sign in to comment.