We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f31be0 commit d6baec1Copy full SHA for d6baec1
1 file changed
testem.js
@@ -11,11 +11,14 @@ module.exports = {
11
Chrome: {
12
mode: 'ci',
13
args: [
14
+ // --no-sandbox is needed when running Chrome inside a container
15
+ process.env.TRAVIS ? '--no-sandbox' : null,
16
+
17
'--disable-gpu',
18
'--headless',
19
'--remote-debugging-port=0',
20
'--window-size=1440,900'
- ]
21
+ ].filter(Boolean)
22
}
23
24
};
0 commit comments