Skip to content

Instantly share code, notes, and snippets.

@ezy
Last active November 29, 2017 01:57
Show Gist options
  • Select an option

  • Save ezy/abd9f2a0554b02b40f0959b102560b40 to your computer and use it in GitHub Desktop.

Select an option

Save ezy/abd9f2a0554b02b40f0959b102560b40 to your computer and use it in GitHub Desktop.
Chrome headless testem file for ember qunit
/* eslint-env node */
module.exports = {
framework: 'qunit',
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
launch_in_ci: ['Chrome'],
launch_in_dev: ['Chrome'],
browser_args: {
'Chrome': ['--headless', '--disable-gpu', '--remote-debugging-port=9222'],
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment