201-created/ember-cli-fake-server

View on GitHub
testem.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  test_page: 'tests/index.html?hidepassed',
  disable_watching: true,
  launch_in_ci: ['Chrome', 'Firefox'],
  launch_in_dev: ['Chrome'],
  browser_args: {
    Firefox: {
      mode: 'ci',
      args: ['-headless']
    },
    Chrome: {
      mode: 'ci',
      args: [
        // --no-sandbox is needed when running Chrome inside a container
        process.env.TRAVIS ? '--no-sandbox' : null,

        '--disable-gpu',
        '--headless',
        '--remote-debugging-port=0',
        '--window-size=1440,900'
      ].filter(Boolean)
    }
  }
};