Skip to content

Commit

Permalink
use Chrome for testing headless
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Kirwan committed Sep 30, 2017
1 parent 829aece commit c545d9b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions testem.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,17 @@ module.exports = {
"test_page": "tests/index.html?hidepassed",
"disable_watching": true,
"launch_in_ci": [
"PhantomJS"
"Chrome"
],
"launch_in_dev": [
"PhantomJS",
"Chrome"
]
],
"browser_args": {
Chrome: [
'--disable-gpu',
'--headless',
'--remote-debugging-port=9222',
'--window-size=1440,900'
]
}
};

0 comments on commit c545d9b

Please sign in to comment.