From eb87c33095c1240a380f680741d190c8988c7e5a Mon Sep 17 00:00:00 2001 From: Dawid Urbas Date: Thu, 18 Jul 2024 15:26:41 +0200 Subject: [PATCH] Test 3 --- tests/helpers.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/helpers.ts b/tests/helpers.ts index 1491e3b..03014f5 100644 --- a/tests/helpers.ts +++ b/tests/helpers.ts @@ -10,7 +10,12 @@ export const launchBrowserWithExtension = async (extensionPath: string): Promise return launch({ dumpio: true, headless: true, - args: [`--disable-extensions-except=${extensionPath}`, `--load-extension=${extensionPath}`] + args: [ + `--disable-extensions-except=${extensionPath}`, + `--load-extension=${extensionPath}`, + '--no-sandbox', + '--disable-setuid-sandbox' + ] }); };