-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtestem.js
48 lines (42 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
42
43
44
45
46
47
48
/* eslint-env node */
const path = require('path');
const fs = require('fs');
const mkdirp = require('mkdirp');
const isCI = !!process.env.CI;
const scenario = process.env.EMBER_TRY_CURRENT_SCENARIO;
let testReportsPath = 'test-results';
let reportFile = path.join(testReportsPath, `${scenario}-test-results.xml`);
if (fs.existsSync(testReportsPath) === false) {
mkdirp.sync(testReportsPath);
}
let options = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
xunit_intermediate_output: true,
report_file: reportFile,
launch_in_ci: [
'Chrome'
],
launch_in_dev: [
'Chrome'
],
browser_start_timeout: 120,
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)
}
}
};
if (isCI) {
options.reporter = 'xunit';
}
module.exports = options;