-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathtestem.json
33 lines (30 loc) · 909 Bytes
/
testem.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
{
"on_start": {
"command": "browserstack tunnel localhost:<port>",
"wait_for_text": "You can now access your local server(s) in our remote browser"
},
"test_page": "spec/SpecRunner.html",
"launchers": {
"bs_ie_10": {
"command": "browserstack launch --attach ie:10.0 <url>",
"protocol": "browser"
},
"bs_ie_9": {
"command": "browserstack launch --attach ie:9.0 <url>",
"protocol": "browser"
},
"bs_ie_8": {
"command": "browserstack launch --attach ie:8.0 <url>",
"protocol": "browser"
},
"bs_ie_7": {
"command": "browserstack launch --attach ie:7.0 <url>",
"protocol": "browser"
},
"bs_ie_6": {
"command": "browserstack launch --attach ie:6.0 <url>",
"protocol": "browser"
}
},
"launch_in_dev": ["Chrome", "Safari", "Firefox", "PhantomJS", "bs_ie_7", "bs_ie_8", "bs_ie_9", "bs_ie_10"]
}