336e57b17a
no issue - ember/ember-data/ember-cli@2.16 - bump all outdated dependencies that do not require additional work or more extensive tests - bump sub-dependencies in yarn.lock - use `broccoli-uglify-sourcemap` (same dep as already used in `ember-cli-uglify`) instead of a separate `broccoli-uglify-js` package for building production codemirror assets - add `/concat-stats-for` to `.gitignore` so that filesize stats from `CONCAT_STATS=true ember build` don't end up in the repo
27 lines
564 B
JavaScript
27 lines
564 B
JavaScript
/* eslint-env node */
|
|
/* eslint-disable camelcase */
|
|
module.exports = {
|
|
framework: 'mocha',
|
|
test_page: 'tests/index.html?hidepassed',
|
|
disable_watching: true,
|
|
launch_in_ci: [
|
|
'Chrome',
|
|
'Firefox'
|
|
],
|
|
launch_in_dev: [
|
|
'Chrome',
|
|
'Firefox'
|
|
],
|
|
browser_args: {
|
|
Chrome: {
|
|
mode: 'ci',
|
|
args: [
|
|
'--disable-gpu',
|
|
'--headless',
|
|
'--remote-debugging-port=9222',
|
|
'--window-size=1440,900'
|
|
]
|
|
}
|
|
}
|
|
};
|