Allow self-signed certs on plugins e2e browser setup

This commit is contained in:
Andrey Antukh 2026-02-10 19:09:00 +01:00
parent 12bc3ac9ed
commit 1e7bef081a

View File

@ -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 });