forked from emberjs/ember.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
testem.dist.json
55 lines (55 loc) · 1.54 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
52
53
54
55
{
"framework": "qunit",
"test_page": "dist/tests/index.html?hidepassed",
"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 34 --no-ct -u <url>",
"protocol": "tap"
},
"SL_Safari_Current": {
"command": "npm run sauce:launch -- -b safari -v 8 --no-ct -u <url>",
"protocol": "tap"
},
"SL_Safari_Last": {
"command": "npm run sauce:launch -- -b safari -v 7 --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"
},
"SL_IE_8": {
"command": "npm run sauce:launch -- -b 'internet explorer' -v 8 --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"
]
}