Skip to content

Commit

Permalink
testem: Use --no-sandbox on TravisCI
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 committed Jan 30, 2018
1 parent 71224f2 commit f28b85b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion testem.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ module.exports = {
],
browser_args: {
Chrome: [
// --no-sandbox is needed when running Chrome inside a container
process.env.TRAVIS ? '--no-sandbox' : null,

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

0 comments on commit f28b85b

Please sign in to comment.