diff --git a/tests/utils/browser.ts b/tests/utils/browser.ts index 5591e9921d..be37c830ce 100644 --- a/tests/utils/browser.ts +++ b/tests/utils/browser.ts @@ -84,7 +84,11 @@ export default class Browser { } async start() { - this.browser = await puppeteer.launch(); + this.browser = await puppeteer.launch( + { + args: ['--no-sandbox', '--disable-setuid-sandbox'], + }, + ); } async close() {