diff --git a/tests/helpers.ts b/tests/helpers.ts index 1491e3b..03014f5 100644 --- a/tests/helpers.ts +++ b/tests/helpers.ts @@ -10,7 +10,12 @@ export const launchBrowserWithExtension = async (extensionPath: string): Promise return launch({ dumpio: true, headless: true, - args: [`--disable-extensions-except=${extensionPath}`, `--load-extension=${extensionPath}`] + args: [ + `--disable-extensions-except=${extensionPath}`, + `--load-extension=${extensionPath}`, + '--no-sandbox', + '--disable-setuid-sandbox' + ] }); };