datahub/datahub-web/configs/testem-base.js
Ignacio Bona Piedrabuena 89c78551cc
1604086049622-ui-sync (#1981)
Co-authored-by: Ignacio Bona <ibonapiedrabuena@linkedin.com>
2020-11-09 12:17:51 -08:00

23 lines
593 B
JavaScript

/* eslint-disable @typescript-eslint/camelcase */
module.exports = {
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',
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900',
'--crash-dumps-dir=/tmp',
'--disable-gpu'
].filter(Boolean)
}
}
};
/* eslint-enable */