forked from glimmerjs/glimmer-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testem-sauce.js
77 lines (76 loc) · 2.15 KB
/
testem-sauce.js
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
'use strict';
module.exports = {
"framework": "qunit",
"test_page": "tests/index.html?hidepassed",
"disable_watching": true,
"timeout": 540,
"parallel": 2,
"launchers":
{
"Node": {
"command": "./bin/run-node-tests.js",
"protocol": "tap"
},
"SL_Chrome_Current": {
"command": "ember sauce:launch -p 'Windows 10' -b chrome -v latest --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_Chrome_Last": {
"command": "ember sauce:launch -p 'Windows 10' -b chrome -v latest-1 --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_Firefox_Current": {
"command": "ember sauce:launch -p 'Windows 10' -b firefox -v latest --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_Firefox_Last": {
"command": "ember sauce:launch -p 'Windows 10' -b firefox -v latest-1 --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_Safari_Current": {
"command": "ember sauce:launch -b safari -v 9 --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_Safari_Last": {
"command": "ember sauce:launch -b safari -v 8 --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_MS_Edge": {
"command": "ember sauce:launch -p 'Windows 10' -b 'microsoftedge' -v latest --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_IE_11": {
"command": "ember sauce:launch -p 'Windows 10' -b 'internet explorer' -v 11 --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_IE_10": {
"command": "ember sauce:launch -p 'Windows 7' -b 'internet explorer' -v 10 --no-ct -u '<url>'",
"protocol": "tap"
},
"SL_IE_9": {
"command": "ember sauce:launch -p 'Windows 7' -b 'internet explorer' -v 9 --no-ct -u '<url>'",
"protocol": "tap"
}
}
,
"launch_in_dev": [
"Node",
"PhantomJS",
"Chrome"
],
"launch_in_ci": [
"Node",
"PhantomJS",
"SL_Chrome_Current",
"SL_Chrome_Last",
"SL_Firefox_Current",
"SL_Firefox_Last",
"SL_Safari_Current",
"SL_Safari_Last",
"SL_MS_Edge",
"SL_IE_11",
"SL_IE_10",
"SL_IE_9"
],
tap_quiet_logs: true
};