Skip to content

Commit 6d4b615

Browse files
adds flag to fix chrome in ci (#13279) (#13282)
Co-authored-by: Jordan Reimer <zofskeez@gmail.com>
1 parent 018cf3e commit 6d4b615

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

ui/testem.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff 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: {

0 commit comments

Comments
 (0)