-
Notifications
You must be signed in to change notification settings - Fork 3
/
testem.js
42 lines (38 loc) · 875 Bytes
/
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
42
function reportFile() {
if (_circleTestFolder()) {
return _circleTestFolder() + '/test.xml';
}
}
function testReporter() {
return _circleTestFolder() ? 'xunit' : 'tap';
}
function _circleTestFolder() {
return process.env['CIRCLE_TEST_REPORTS'];
}
module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
launch_in_ci: [
'Chrome'
],
launch_in_dev: [
'Firefox',
'Chrome'
],
browser_args: {
Chrome: {
mode: 'ci',
args: [
// --no-sandbox is needed when running Chrome inside a container
process.env.TRAVIS ? '--no-sandbox' : null,
'--disable-gpu',
'--headless',
'--remote-debugging-port=0',
'--window-size=1440,900'
].filter(Boolean)
}
},
reporter: testReporter(),
report_file: reportFile(),
xunit_intermediate_output: true
};