File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,11 +22,18 @@ module.exports = {
2222 process . env . CI ? '--no-sandbox' : null ,
2323 '--headless=new' ,
2424 '--disable-dev-shm-usage' ,
25- '--disable-software-rasterizer' ,
2625 '--disable-search-engine-choice-screen' , // needed from Chrome 127
2726 '--mute-audio' ,
2827 '--remote-debugging-port=0' ,
2928 '--window-size=1440,900' ,
29+ // Chrome for Testing as of 146.0.7680.31 in early March 2026
30+ // crashes on Ubuntu in containers (which is what we run in CI)
31+ // Disabling this feature seems to fix the issue, but we should keep an
32+ // eye on it and remove this flag once it's fixed in Chrome.
33+ // https://issues.chromium.org/issues/489314676
34+ // https://github.com/puppeteer/puppeteer/pull/14744
35+ // https://github.com/puppeteer/puppeteer/issues/14742
36+ '--disable-features=PartitionAllocSchedulerLoopQuarantineTaskControlledPurge' ,
3037 ] . filter ( Boolean ) ,
3138 } ,
3239 Firefox : {
You can’t perform that action at this time.
0 commit comments