-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestem.js
More file actions
34 lines (33 loc) · 873 Bytes
/
Copy pathtestem.js
File metadata and controls
34 lines (33 loc) · 873 Bytes
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
const config = {
test_page: 'tests/index.html?hidepassed',
reporter: 'dot',
disable_watching: true,
launch_in_ci: ['Chrome'],
launch_in_dev: ['Chrome'],
browser_start_timeout: 120,
browser_args: {
Chrome: [
// --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',
'--disable-accelerated-2d-canvas',
'--mute-audio',
'--remote-debugging-port=9222',
'--window-size=1440,900',
].filter(Boolean),
},
browser_disconnect_timeout: 20000,
timeout: 20000,
};
module.exports = process.env.CI
? {
...config,
reporter: 'xunit',
report_file: `${
process.env.RESULTS_PATH ?? './test-results/'
}/report.xml`,
}
: config;