forked from TryGhost/Admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testem.js
41 lines (37 loc) · 1.09 KB
/
testem.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* eslint-env node */
/* eslint-disable camelcase */
const isCronBuild = process.env.TRAVIS_EVENT_TYPE === 'cron';
let launch_in_ci = ['Chrome'];
// we only test Firefox in nightly builds on CI to keep push/PR build times lower
if (isCronBuild) {
launch_in_ci.push('Firefox');
}
module.exports = {
framework: 'mocha',
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-gpu',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900'
].filter(Boolean)
},
Firefox: {
ci: ['-headless']
}
}
};