forked from tildeio/htmlbars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testem-sauce.json
63 lines (63 loc) · 1.66 KB
/
testem-sauce.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
56
57
58
59
60
61
62
63
{
"framework": "qunit",
"test_page": "tests/index.html?hidepassed",
"disable_watching": true,
"timeout": 540,
"parallel": 2,
"launchers":
{
"SL_Chrome_Current": {
"command": "ember sauce:launch -b chrome -v 39 --no-ct -u <url>",
"protocol": "tap"
},
"SL_Chrome_Last": {
"command": "ember sauce:launch -b chrome -v 38 --no-ct -u <url>",
"protocol": "tap"
},
"SL_Firefox_Current": {
"command": "ember sauce:launch -b firefox -v 34 --no-ct -u <url>",
"protocol": "tap"
},
"SL_Firefox_Last": {
"command": "ember sauce:launch -b firefox -v 33 --no-ct -u <url>",
"protocol": "tap"
},
"SL_Safari_Current": {
"command": "ember sauce:launch -b safari -v 8 --no-ct -u <url>",
"protocol": "tap"
},
"SL_Safari_Last": {
"command": "ember sauce:launch -b safari -v 7 --no-ct -u <url>",
"protocol": "tap"
},
"SL_IE_11": {
"command": "ember sauce:launch -b 'internet explorer' -v 11 --no-ct -u <url>",
"protocol": "tap"
},
"SL_IE_10": {
"command": "ember sauce:launch -b 'internet explorer' -v 10 --no-ct -u <url>",
"protocol": "tap"
},
"SL_IE_9": {
"command": "ember sauce:launch -b 'internet explorer' -v 9 --no-ct -u <url>",
"protocol": "tap"
}
}
,
"launch_in_dev": [
"PhantomJS",
"Chrome"
],
"launch_in_ci": [
"PhantomJS",
"SL_Chrome_Current",
"SL_Chrome_Last",
"SL_Firefox_Current",
"SL_Firefox_Last",
"SL_Safari_Current",
"SL_Safari_Last",
"SL_IE_11",
"SL_IE_10",
"SL_IE_9"
]
}