cdfe06cde7
no issue - upgrade `ember-cli`, `ember-source`, and `ember-data` to their latest 3.x versions - remove jquery ajax test that was a silent failure anyway (we removed the global jquery ajax auth patch a while ago) - fix issues that arose from using/abusing Ember internals in a couple of places
30 lines
719 B
JavaScript
30 lines
719 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: [
|
|
// --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)
|
|
}
|
|
}
|
|
};
|