Skip to content

Commit b60a32c

Browse files
author
Anthony Kirwan
committed
fix: chrome headless travis
1 parent c01e2ca commit b60a32c

File tree

2 files changed

+11
-14
lines changed

2 files changed

+11
-14
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ language: node_js
55
node_js:
66
- "6.11"
77

8-
sudo: false
8+
sudo: required
99

1010
cache:
1111
directories:

testem.js

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
/*jshint node:true*/
22
module.exports = {
3-
"framework": "qunit",
4-
"test_page": "tests/index.html?hidepassed",
5-
"disable_watching": true,
6-
"launch_in_ci": [
7-
"Chrome"
8-
],
9-
"launch_in_dev": [
10-
"Chrome"
11-
],
12-
"browser_args": {
3+
framework: 'qunit',
4+
test_page: 'tests/index.html?hidepassed',
5+
disable_watching: true,
6+
launch_in_ci: ['Chrome'],
7+
launch_in_dev: ['Chrome'],
8+
browser_args: {
139
Chrome: [
1410
'--disable-gpu',
1511
'--headless',
12+
'--no-sandbox',
1613
'--remote-debugging-port=9222',
17-
'--window-size=1440,900'
18-
]
19-
}
14+
'--window-size=1440,900',
15+
],
16+
},
2017
};

0 commit comments

Comments
 (0)