We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72c973e commit 3049b2fCopy full SHA for 3049b2f
1 file changed
tests/test_utils.tsx
@@ -29,7 +29,10 @@ import { FreshAttrs } from "./fixtures_islands/FreshAttrs.tsx";
29
import { OptOutPartialLink } from "./fixtures_islands/OptOutPartialLink.tsx";
30
31
const browser = await launch({
32
- args: ["--window-size=1280,720"],
+ args: [
33
+ "--window-size=1280,720",
34
+ ...(Deno.build.os === "linux" ? ["--no-sandbox"] : []),
35
+ ],
36
headless: true,
37
});
38
0 commit comments