forked from emberjs/ember.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testem.dist.json
51 lines (51 loc) · 1.45 KB
/
testem.dist.json
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
51
{
"framework": "qunit",
"test_page": "dist/tests/index.html?hidepassed&hideskipped&timeout=60000",
"timeout": 540,
"parallel": 4,
"disable_watching": true,
"launchers": {
"SL_Chrome_Current": {
"command": "npm run sauce:launch -- -b chrome --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_Firefox_Current": {
"command": "npm run sauce:launch -- -b firefox -v 45 --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_Safari_Current": {
"command": "npm run sauce:launch -- -b safari -v 9 --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_Safari_Last": {
"command": "npm run sauce:launch -- -b safari -v 8 --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_MS_Edge": {
"command": "npm run sauce:launch -- -b 'microsoftedge' --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_IE_11": {
"command": "npm run sauce:launch -- -b 'internet explorer' -v 11 --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_IE_10": {
"command": "npm run sauce:launch -- -b 'internet explorer' -v 10 --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_IE_9": {
"command": "npm run sauce:launch -- -b 'internet explorer' -v 9 --no-ct -u '<url>'",
"protocol": "tap"
}
},
"launch_in_dev": ["PhantomJS"],
"launch_in_ci": [
"SL_Chrome_Current",
"SL_Safari_Current",
"SL_MS_Edge",
"SL_IE_11",
"SL_IE_10",
"SL_IE_9",
"SL_Firefox_Current"
]
}