san650/ember-web-app

View on GitHub
testem.js

Summary

Maintainability
A
0 mins
Test Coverage
/* 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=0',
        '--window-size=1440,900',
        // Workaround for https://github.com/travis-ci/travis-ci/issues/8836
        '--no-sandbox',
      ]
    }
  }
};