From 96f9e796bed8ac25e80fc85debfbccd8d4290986 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 10 Feb 2026 19:09:00 +0100 Subject: [PATCH] :sparkles: Allow self-signed certs on plugins e2e browser setup --- plugins/apps/e2e/src/utils/agent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/apps/e2e/src/utils/agent.ts b/plugins/apps/e2e/src/utils/agent.ts index 0093cc64ce..2a29c3758b 100644 --- a/plugins/apps/e2e/src/utils/agent.ts +++ b/plugins/apps/e2e/src/utils/agent.ts @@ -56,7 +56,7 @@ export async function Agent() { console.log('File URL:', fileUrl); console.log('Launching browser...'); - const browser = await puppeteer.launch({}); + const browser = await puppeteer.launch({args: ['--ignore-certificate-errors']}); const page = await browser.newPage(); await page.setViewport({ width: 1920, height: 1080 });