-
Notifications
You must be signed in to change notification settings - Fork 37
/
nightwatch-ci.js
41 lines (38 loc) · 908 Bytes
/
nightwatch-ci.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
module.exports = {
"src_folders": ["test/integration"],
"output_folder": "reports",
"custom_commands_path": "",
"custom_assertions_path": "",
"page_objects_path": "",
"globals_path": "",
"selenium": {
"start_process": false,
"log_path": "",
"host": "127.0.0.1",
"port": 4445
},
"test_settings": {
"default": {
"launch_url": 'http://ondemand.saucelabs.com:80',
"selenium_port": 80,
"selenium_host": 'ondemand.saucelabs.com',
"silent": true,
"username": process.env.SAUCE_USERNAME,
"access_key": process.env.SAUCE_ACCESS_KEY,
"screenshots": {
"enabled": false,
"path": '',
},
"globals": {
"waitForConditionTimeout": 10000,
},
},
chrome: {
desiredCapabilities: {
browserName: 'chrome',
platform: 'OS X 10.11',
version: '54',
},
},
}
};