accent/webapp/testem.js

21 lines
480 B
JavaScript
Raw Normal View History

2018-04-05 23:47:36 +03:00
/* eslint-env node */
2018-04-26 19:51:28 +03:00
/* eslint-disable camelcase */
'use strict';
2018-04-05 23:47:36 +03:00
module.exports = {
2018-04-26 19:51:28 +03:00
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
launch_in_ci: ['Chrome'],
launch_in_dev: ['Chrome'],
browser_args: {
Chrome: [
// --no-sandbox is needed when running Chrome inside a container
process.env.TRAVIS ? '--no-sandbox' : null,
'--headless',
'--disable-gpu',
'--remote-debugging-port=9222',
].filter(Boolean),
},
2018-04-05 23:47:36 +03:00
};