forked from bustle/mobiledoc-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestem-ci.json
More file actions
50 lines (50 loc) · 1.26 KB
/
testem-ci.json
File metadata and controls
50 lines (50 loc) · 1.26 KB
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
49
50
{
"framework": "qunit",
"parallel": 5,
"disable_watching": true,
"timeout": 600,
"browser_start_timeout": 90,
"test_page": "dist/tests/index.html?hidepassed",
"on_start": "./sauce_labs/saucie-connect.js",
"on_exit": "./sauce_labs/saucie-disconnect.js",
"port": 8080,
"launchers": {
"SL_Chrome_Current": {
"exe": "saucie",
"args": ["-b", "chrome", "-p", "Windows 10", "-v", "latest", "--no-connect", "-u"],
"protocol": "tap"
},
"SL_MS_Edge": {
"exe": "saucie",
"args": ["-b", "microsoftedge", "--no-connect", "-u"],
"protocol": "tap"
},
"SL_IE_11": {
"exe": "saucie",
"args": ["-b", "internet explorer", "-v", "11", "--no-connect", "-u"],
"protocol": "tap"
},
"SL_Firefox_Current": {
"exe": "saucie",
"args": ["-b", "firefox", "-p", "Windows 10", "-v", "latest", "--no-connect", "-u"],
"protocol": "tap"
},
"SL_Safari_Current": {
"exe": "saucie",
"args": ["-b", "safari", "-v", "9", "--no-connect", "-u"],
"protocol": "tap"
}
},
"launch_in_ci": [
"PhantomJS",
"SL_Firefox_Current",
"SL_Chrome_Current",
"SL_Safari_Current",
"SL_MS_Edge",
"SL_IE_11"
],
"launch_in_dev": [
"PhantomJS",
"Chrome"
]
}