Skip to content

Commit

Permalink
Fix travis no-sandox issue, Update testem to match ember-cli 3.3 blue…
Browse files Browse the repository at this point in the history
…print
  • Loading branch information
oscarni committed Jul 23, 2018
1 parent a2a0e2e commit db1b779
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions testem.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-env node */
/* eslint-disable camelcase */
module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
Expand All @@ -10,13 +10,17 @@ module.exports = {
],
browser_args: {
Chrome: {
mode: 'ci',
args: [
'--disable-gpu',
ci: [
// --no-sandbox is needed when running Chrome inside a container
process.env.CI ? '--no-sandbox' : null,
'--headless',
'--disable-gpu',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900'
]
].filter(Boolean)
}
}
};

0 comments on commit db1b779

Please sign in to comment.