update testem with newer conventions

This commit is contained in:
Alvin Huang 2018-12-20 12:52:08 -05:00
parent 898c725279
commit 9c1e0a75d0
1 changed files with 2 additions and 4 deletions

View File

@ -5,11 +5,9 @@ module.exports = {
launch_in_dev: ['Chrome'], launch_in_dev: ['Chrome'],
browser_args: { browser_args: {
Chrome: { Chrome: {
mode: 'ci', "ci": [
args: [
// --no-sandbox is needed when running Chrome inside a container // --no-sandbox is needed when running Chrome inside a container
process.env.TRAVIS ? '--no-sandbox' : null, process.env.CI ? '--no-sandbox' : null,
'--disable-gpu', '--disable-gpu',
'--headless', '--headless',
'--remote-debugging-port=0', '--remote-debugging-port=0',