Skip to content

Instantly share code, notes, and snippets.

@morhook
Created October 24, 2017 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morhook/0d830749e9c89d4d3ce3ccc8efb7d500 to your computer and use it in GitHub Desktop.
Save morhook/0d830749e9c89d4d3ce3ccc8efb7d500 to your computer and use it in GitHub Desktop.
/* eslint-env node */
module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
launch_in_ci: [
'Chrome'
],
launch_in_dev: [
'Chrome'
],
browser_args: {
Chrome: {
mode: 'ci',
args: [
'--disable-gpu',
'--headless',
'--remote-debugging-port=9222',
'--window-size=1440,900'
]
},
Chrome: {
mode: 'dev',
args: [
'--disable-gpu',
'--headless',
'--remote-debugging-port=9222',
'--window-size=1440,900'
]
},
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment