adds flag to fix chrome in ci (#13279) (#13282)

Co-authored-by: Jordan Reimer <zofskeez@gmail.com>
This commit is contained in:
Vault Automation 2026-03-20 17:06:39 -04:00 committed by GitHub
parent 018cf3e891
commit 6d4b615671
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,11 +22,18 @@ module.exports = {
process.env.CI ? '--no-sandbox' : null,
'--headless=new',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--disable-search-engine-choice-screen', // needed from Chrome 127
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900',
// Chrome for Testing as of 146.0.7680.31 in early March 2026
// crashes on Ubuntu in containers (which is what we run in CI)
// Disabling this feature seems to fix the issue, but we should keep an
// eye on it and remove this flag once it's fixed in Chrome.
// https://issues.chromium.org/issues/489314676
// https://github.com/puppeteer/puppeteer/pull/14744
// https://github.com/puppeteer/puppeteer/issues/14742
'--disable-features=PartitionAllocSchedulerLoopQuarantineTaskControlledPurge',
].filter(Boolean),
},
Firefox: {