1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/testem.js
Kevin Ansfield 199d33b8c0 Increased testem's browser_start_timeout to 120s
no issue

- we're seeing random failures in CI with the error "Browser failed to connect within 30s. testem.js not loaded?"
- bumped the timeout to 120s to determine if it's due to occasional CI-related slowness or something else
2020-07-20 12:20:26 +01:00

36 lines
973 B
JavaScript

/* eslint-env node */
/* eslint-disable camelcase */
let launch_in_ci = [process.env.BROWSER || 'Chrome'];
module.exports = {
framework: 'mocha',
browser_start_timeout: 120,
browser_disconnect_timeout: 60,
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
parallel: process.env.EMBER_EXAM_SPLIT_COUNT || 1,
launch_in_ci,
launch_in_dev: [
'Chrome',
'Firefox'
],
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)
},
Firefox: {
ci: ['-headless']
}
}
};