open-vault/ui/testem.js

34 lines
781 B
JavaScript
Raw Normal View History

2019-04-03 19:50:00 +00:00
const config = {
framework: 'qunit',
test_page: 'tests/index.html?hidepassed',
tap_quiet_logs: true,
disable_watching: true,
launch_in_ci: ['Chrome'],
browser_args: {
Chrome: {
ci: [
// --no-sandbox is needed when running Chrome inside a container
process.env.CI ? '--no-sandbox' : null,
'--headless',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900',
].filter(Boolean),
},
},
2018-04-03 14:16:57 +00:00
proxies: {
'/v1': {
target: 'http://localhost:9200',
},
},
2018-04-03 14:16:57 +00:00
};
2019-04-03 19:50:00 +00:00
if (process.env.CI) {
config.reporter = 'xunit';
config.report_file = 'test-results/qunit/results.xml';
2019-04-03 19:50:00 +00:00
config.xunit_intermediate_output = true;
}
module.exports = config;