From d60d39c54123bf5654d20780533822bf93c86b5b Mon Sep 17 00:00:00 2001 From: naugtur Date: Wed, 17 Jan 2024 14:06:50 +0100 Subject: [PATCH] squashme --- packages/ses/smoke-test/index.js | 8 ++++++++ 1 file changed, 8 insertions(+) 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();