Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions test/source/browser/browser-pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ export class BrowserPool {
`--window-size=${this.width + 10},${this.height + 132}`,
// https://github.com/puppeteer/puppeteer/issues/5123
'--disable-features=site-per-process',
// https://github.com/FlowCrypt/flowcrypt-browser/issues/6060
// Fix for CORS Private Network Access issues with Puppeteer 24.16.0+
'--disable-web-security',
];
if (this.isMock) {
args.push('--ignore-certificate-errors');
Expand Down
Loading