open-vault/ui/testem.js

31 lines
885 B
JavaScript
Raw Normal View History

/* eslint-env node */
2018-04-03 14:16:57 +00:00
module.exports = {
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-gpu',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900',
].filter(Boolean),
},
},
on_exit:
'[ -e ../../vault-ui-integration-server.pid ] && node ../../scripts/start-vault.js `cat ../../vault-ui-integration-server.pid`; [ -e ../../vault-ui-integration-server.pid ] && rm ../../vault-ui-integration-server.pid',
2018-04-03 14:16:57 +00:00
proxies: {
'/v1': {
target: 'http://localhost:9200',
},
},
2018-04-03 14:16:57 +00:00
};