From b8f2d5a2fc498587354f3a0177761474f0163439 Mon Sep 17 00:00:00 2001 From: Volker Schukai <volker.schukai@schukai.com> Date: Wed, 15 May 2024 12:13:07 +0200 Subject: [PATCH] fix: wip web tests --- test/web/puppeteer.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/web/puppeteer.mjs b/test/web/puppeteer.mjs index fd6874cd6..ccedf6544 100644 --- a/test/web/puppeteer.mjs +++ b/test/web/puppeteer.mjs @@ -30,7 +30,7 @@ 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'], + args: ['--no-sandbox',"--window-size=1440,1000", "--no-sandbox", "--disable-setuid-sandbox", "--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