forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 8
/
nightwatch.browserstack.json
46 lines (42 loc) · 1.21 KB
/
nightwatch.browserstack.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
{
"src_folders": ["./test/spec/e2e"],
"output_folder": "./build/coverage/e2e/reports",
"custom_commands_path": "",
"custom_assertions_path": "",
"page_objects_path": "",
"globals_path": "",
"selenium" : {
"start_process" : false,
"host" : "hub.browserstack.com",
"port" : 80
},
"test_settings": {
"default": {
"launch_url" : "https://hub.browserstack.com",
"selenium_port" : 80,
"selenium_host" : "hub.browserstack.com",
"silent": true,
"exclude":["custom-assertions","custom-commands","common","custom-reporter"],
"screenshots" : {
"enabled" : false,
"path" : ""
},
"desiredCapabilities": {
"browserName": "chrome",
"browser_version" : "51.0",
"platform" : "WINDOWS",
"javascriptEnabled": true,
"acceptSslCerts": true,
"os" : "WINDOWS",
"os_version" : "7",
"browser" : "Chrome",
"browser_version" : "51.0",
"browserstack.local": true,
"browserstack.debug": true,
"browserstack.selenium_version" : "2.53.0",
"browserstack.user": "${BROWSERSTACK_USERNAME}",
"browserstack.key": "${BROWSERSTACK_KEY}"
}
}
}
}