forked from minichate/ember-cli-conditional-compile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestem.js
More file actions
29 lines (29 loc) · 635 Bytes
/
testem.js
File metadata and controls
29 lines (29 loc) · 635 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
/* eslint-env node */
module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
launch_in_ci: [
'Chrome'
],
launch_in_dev: [
'Chrome'
],
browser_start_timeout: 60,
browser_disconnect_timeout: 1000,
parallel: -1,
browser_args: {
Chrome: [
'--disable-gpu',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--disable-web-security',
'--headless',
'--incognito',
'--mute-audio',
'--no-sandbox',
'--remote-debugging-address=0.0.0.0',
'--remote-debugging-port=9222',
'--window-size=1440,900'
]
}
};