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 authored and Joanne Pham committed Mar 2, 2018
1 parent 8d17174 commit 09db66f
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 09db66f

Please sign in to comment.