-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtestem.js
More file actions
28 lines (27 loc) · 771 Bytes
/
testem.js
File metadata and controls
28 lines (27 loc) · 771 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
'use strict';
module.exports = {
test_page: 'tests/index.html?hidepassed&dockcontainer',
disable_watching: true,
launch_in_ci: ['Chrome', 'Firefox'],
launch_in_dev: ['Chrome', 'Firefox'],
browser_start_timeout: 120,
browser_args: {
Chrome: {
dev: ['--auto-open-devtools-for-tabs'],
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)
},
Firefox: {
dev: ['-devtools'],
ci: ['-headless', '--width=1440', '--height=900']
}
}
};