Skip to content

Commit

Permalink
testem: Use --no-sandbox on TravisCI (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 authored and marcoow committed Jan 22, 2018
1 parent 984f68d commit f075823
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 @@ -12,11 +12,14 @@ module.exports = {
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)
}
}
};

0 comments on commit f075823

Please sign in to comment.