Skip to content

Commit def5338

Browse files
author
David Tang
committed
testem
1 parent 788d62f commit def5338

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

testem.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
const browserArgs = process.env.TRAVIS ? ['--headless', '--disable-gpu', '--remote-debugging-port=0'] : [];
2-
31
module.exports = {
42
test_page: 'tests/index.html?hidepassed',
53
disable_watching: true,
@@ -10,6 +8,14 @@ module.exports = {
108
'Chrome'
119
],
1210
browser_args: {
13-
Chrome: browserArgs
11+
Chrome: {
12+
mode: 'ci',
13+
args: [
14+
'--disable-gpu',
15+
'--headless',
16+
'--remote-debugging-port=0',
17+
'--window-size=1440,900'
18+
]
19+
}
1420
}
1521
};

0 commit comments

Comments
 (0)