-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathtestem.js
More file actions
30 lines (30 loc) · 743 Bytes
/
testem.js
File metadata and controls
30 lines (30 loc) · 743 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
module.exports = {
test_page: 'tests/index.html?hidepassed&nolint¬rycatch',
disable_watching: true,
timeout: 1200,
browser_start_timeout: 2000,
parallel: 4,
launch_in_ci: ['Chrome'],
launch_in_dev: ['Chrome'],
browser_args: {
Chrome: {
dev: [
'--no-sandbox',
'--disable-gpu',
'--auto-open-devtools-for-tabs',
'--window-size=1440,900',
].filter(Boolean),
ci: [
'--no-sandbox',
'--disable-gpu',
'--headless',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900',
].filter(Boolean),
},
Firefox: ['-headless'],
},
};