diff --git a/packages/ses/smoke-test/index.js b/packages/ses/smoke-test/index.js index 2325f412b4..fad6819910 100644 --- a/packages/ses/smoke-test/index.js +++ b/packages/ses/smoke-test/index.js @@ -12,10 +12,18 @@ let browser; async function runTests() { // Launch the browser browser = await puppeteer.launch({ + headless: 'new', + args: [ + '--disable-setuid-sandbox', + '--no-sandbox', + '--single-process', + '--no-zygote', + ], executablePath: chromePath, timeout: 60000, protocolTimeout: 30000, }); + // Open a new page const page = await browser.newPage();