accent/webapp/testem.js

26 lines
609 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: {
ci: [
// --no-sandbox is needed when running Chrome inside a container
process.env.CI ? '--no-sandbox' : null,
'--headless',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900'
].filter(Boolean)
}
}
2018-04-05 23:47:36 +03:00
};