From 847f3be53fae6b24463727d3023947ab329560fb Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Wed, 15 May 2024 16:44:24 +0200
Subject: [PATCH] fix: wip web tests

---
 test/web/puppeteer.mjs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test/web/puppeteer.mjs b/test/web/puppeteer.mjs
index 0c8fdbca5..743368fe0 100644
--- a/test/web/puppeteer.mjs
+++ b/test/web/puppeteer.mjs
@@ -30,7 +30,8 @@ if (!config.browser) {
     const browser = await puppeteer.launch({
         headless: 'new', // if you want to see the browser, set this to false
         executablePath: config.browser,
-        args: ['--no-sandbox',"--window-size=1440,1000", "--no-sandbox", "--disable-setuid-sandbox", "--disable-gpu"],
+        //args: ['--no-sandbox',"--window-size=1440,1000", "--no-sandbox", "--disable-setuid-sandbox", "--disable-gpu"],
+        args: ["--disable-gpu"],
         userAgent: 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',
         waitUntil: 'load', 
         timeout: 0,
-- 
GitLab