diff --git a/tests/e2e/puppeteer.ts b/tests/e2e/puppeteer.ts index 2cf2d6a1a..a51cda6c9 100644 --- a/tests/e2e/puppeteer.ts +++ b/tests/e2e/puppeteer.ts @@ -50,6 +50,7 @@ export const connect = () => { }); const browserURL = `http://localhost:${electronDebugPort}` + // See notes on no sandbox mode: https://pptr.dev/troubleshooting#setting-up-chrome-linux-sandbox const browser = output.browser = await puppeteer.launch({ headless: 'new', args: ["--no-sandbox", "--disable-setuid-sandbox"] }) const page = output.page = await browser.newPage(); await page.goto(browserURL);