forked from ember-bootstrap/ember-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestem.sauce.js
129 lines (122 loc) · 2.42 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* eslint-env node */
module.exports = {
'test_page': 'tests/index.html?hidepassed',
'disable_watching': true,
'timeout': 540,
'parallel': 5,
'browser_start_timeout': 90,
'launch_in_ci': [
'SLEdge',
'SLChrome',
'SLFirefox',
'SLIE11',
'SLSafari'
],
'launch_in_dev': [
'Chrome'
],
launchers: {
SLEdge: {
'command': 'ember sauce:launch -b MicrosoftEdge -v 14 --visibility public -p "Windows 10" --no-connect --url "<url>"',
'protocol': 'tap'
},
SLChrome: {
'exe': 'ember',
'args': [
'sauce:launch',
'-b',
'Chrome',
'-v',
'60',
'--visibility',
'public',
'-p',
'Windows 10',
'--attach',
'--no-connect',
'--url'
],
'protocol': 'browser'
},
SLFirefox: {
'exe': 'ember',
'args': [
'sauce:launch',
'-b',
'Firefox',
'-v',
'54',
'--visibility',
'public',
'-p',
'Windows 10',
'--attach',
'--no-connect',
'--url'
],
'protocol': 'browser'
},
SLIE11: {
'exe': 'ember',
'args': [
'sauce:launch',
'-b',
'internet explorer',
'-v',
'11',
'--visibility',
'public',
'-p',
'Windows 10',
'--attach',
'--no-connect',
'--url'
],
'protocol': 'browser'
},
SLIE10: {
'exe': 'ember',
'args': [
'sauce:launch',
'-b',
'internet explorer',
'-v',
'10',
'--visibility',
'public',
'-p',
'Windows 8',
'--attach',
'--no-connect',
'--url'
],
'protocol': 'browser'
},
SLIE9: {
'exe': 'ember',
'args': [
'sauce:launch',
'-b',
'internet explorer',
'-v',
'9',
'--visibility',
'public',
'-p',
'Windows 7',
'--attach',
'--no-connect',
'--url'
],
'protocol': 'browser'
},
SLSafari: {
'command': 'ember sauce:launch -b safari -v 10 --visibility public -p "macOS 10.12" --no-connect --url "<url>"',
'protocol': 'tap'
},
SLSafariLast: {
'command': 'ember sauce:launch -b safari -v 9 --visibility public -p "OS X 10.11" --no-connect --url "<url>"',
'protocol': 'tap'
}
}
};