diff --git a/test/puppeteer.js b/test/puppeteer.js index b0abfc5..f3afe02 100755 --- a/test/puppeteer.js +++ b/test/puppeteer.js @@ -24,7 +24,12 @@ function makePromiseInfo() { } async function test(port) { - const browser = await puppeteer.launch(); + const browser = await puppeteer.launch({ + args: [ + '--no-sandbox', + '--disable-setuid-sandbox', + ], + }); const page = await browser.newPage(); page.on('console', async e => {