We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01f3d3e commit 35adbffCopy full SHA for 35adbff
tests/wasm/setup_test.go
@@ -36,6 +36,13 @@ func chromectx(t *testing.T) context.Context {
36
// see https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md
37
opts := append(chromedp.DefaultExecAllocatorOptions[:],
38
chromedp.NoSandbox,
39
+ chromedp.Flag("disable-web-security", true),
40
+ chromedp.Flag("safebrowsing-disable-auto-update", true),
41
+ chromedp.IgnoreCertErrors,
42
+ chromedp.Flag("disable-sync", true),
43
+ chromedp.Flag("disable-default-apps", true),
44
+ chromedp.NoFirstRun,
45
+ chromedp.Headless,
46
)
47
48
allocCtx, cancel := chromedp.NewExecAllocator(context.Background(), opts...)
0 commit comments