2019-08-31 20:51:14 -07:00
|
|
|
/* eslint-disable @typescript-eslint/camelcase */
|
2017-01-17 19:20:46 -08:00
|
|
|
module.exports = {
|
2017-09-19 13:32:04 -07:00
|
|
|
test_page: 'tests/index.html?hidepassed',
|
|
|
|
disable_watching: true,
|
2019-08-31 20:51:14 -07:00
|
|
|
launch_in_ci: ['Chrome'],
|
|
|
|
launch_in_dev: ['Chrome'],
|
2017-10-23 16:50:48 -07:00
|
|
|
browser_args: {
|
|
|
|
Chrome: {
|
2018-08-08 08:53:10 -07:00
|
|
|
ci: [
|
|
|
|
// --no-sandbox is needed when running Chrome inside a container
|
|
|
|
process.env.CI ? '--no-sandbox' : null,
|
2017-10-23 16:50:48 -07:00
|
|
|
'--headless',
|
2018-08-08 08:53:10 -07:00
|
|
|
'--mute-audio',
|
2018-01-20 00:46:47 -08:00
|
|
|
'--remote-debugging-port=0',
|
2017-10-23 16:50:48 -07:00
|
|
|
'--window-size=1440,900'
|
2018-08-08 08:53:10 -07:00
|
|
|
].filter(Boolean)
|
2018-01-20 00:46:47 -08:00
|
|
|
}
|
2017-10-23 16:50:48 -07:00
|
|
|
}
|
2017-01-17 19:20:46 -08:00
|
|
|
};
|
2019-08-31 20:51:14 -07:00
|
|
|
/* eslint-enable */
|