Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
46 changes: 23 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"openpgp": "6.2.0",
"pdfjs-dist": "5.4.54",
"prettier": "^3.6.2",
"puppeteer": "24.15.0",
"puppeteer": "24.17.1",
"stylelint": "16.23.1",
"stylelint-config-standard": "39.0.0",
"typescript": "5.9.2",
Expand Down Expand Up @@ -86,7 +86,7 @@
"test_async_stack": "node build/test/test/source/async-stack.js",
"test_buf": "npx ava --timeout=3m --verbose --concurrency=10 build/test/test/source/buf.js",
"test_ci_chrome_consumer_live_gmail": "npx ava --timeout=45m --verbose --tap --concurrency=1 build/test/test/source/test.js -- CONSUMER-LIVE-GMAIL STANDARD-GROUP | npx tap-xunit > report.xml",
"test_ci_chrome_consumer": "npx ava --timeout=30m --verbose --tap --concurrency=10 build/test/test/source/test.js -- CONSUMER-MOCK STANDARD-GROUP | npx tap-xunit > report.xml",
"test_ci_chrome_consumer": "npx ava --timeout=30m --verbose --concurrency=10 build/test/test/source/test.js -- CONSUMER-MOCK STANDARD-GROUP",
"test_ci_chrome_enterprise": "npx ava --timeout=30m --verbose --tap --concurrency=10 build/test/test/source/test.js -- ENTERPRISE-MOCK STANDARD-GROUP | npx tap-xunit > report.xml",
"test_ci_chrome_consumer_flaky": "npx ava --timeout=30m --verbose --tap --concurrency=10 build/test/test/source/test.js -- CONSUMER-MOCK FLAKY-GROUP | npx tap-xunit > report.xml",
"test_ci_chrome_content_scripts": "npx ava --timeout=3m --verbose --tap build/test/test/source/test.js -- CONTENT-SCRIPT-TESTS > report.xml",
Expand Down
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