-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtestem.json
More file actions
52 lines (45 loc) · 1.23 KB
/
testem.json
File metadata and controls
52 lines (45 loc) · 1.23 KB
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
{
"bs_user": "BROWSERSTACK_USERNAME",
"bs_key": "BROWSERSTACK_ACCESS_KEY",
"framework": "jasmine",
"parallel": 4,
"on_start": {
"command": "kill -9 $(ps -A | grep BrowserStackLocal | grep -v grep | cut -d ' ' -f2); ./scripts/browserstack-local.js &",
"wait_for_text": "Tunnel Started",
"wait_for_text_timeout": 300000
},
"on_exit": "./scripts/browserstack-local.js `cat browserstack-local.pid`; rm browserstack-local.pid",
"launchers": {
"bs_chrome": {
"exe": "./scripts/browserstack.js",
"args": [ "OSX", "ElCapitan", "chrome", "51.0", "" ],
"protocol": "browser"
},
"bs_firefox": {
"exe": "./scripts/browserstack.js",
"args": [ "Windows", "10", "firefox", "45.0", "" ],
"protocol": "browser"
},
"bs_safari": {
"exe": "./scripts/browserstack.js",
"args": [ "OSX", "ElCapitan", "safari", "9.1", "" ],
"protocol": "browser"
},
"bs_ie": {
"exe": "./scripts/browserstack.js",
"args": [ "Windows", "10", "ie", "11.0", "" ],
"protocol": "browser"
}
},
"launch_in_dev": [],
"launch_in_ci": [
"bs_chrome",
"bs_firefox",
"bs_safari",
"bs_ie"
],
"src_files": [
"src/*",
"tests/*"
]
}