-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnightwatch.js
More file actions
37 lines (34 loc) · 832 Bytes
/
nightwatch.js
File metadata and controls
37 lines (34 loc) · 832 Bytes
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
const TRAVIS_JOB_NUMBER = process.env.TRAVIS_JOB_NUMBER;
module.exports = {
"src_folders": [
"tests/e2e"
],
"test_settings": {
"local": {
"launch_url": "http://127.0.0.1:8080/"
},
"saucelabs": {
desiredCapabilities: {
browserName: "chrome",
platform: "OS X 10.11",
version: "latest",
build: 'build-' + TRAVIS_JOB_NUMBER,
'tunnel-identifier': TRAVIS_JOB_NUMBER,
"username": "kirjs",
"access_key": process.env.SAUCE_ACCESS_KEY
},
"launch_url": "http://127.0.0.1:8080/",
"selenium_port": 80,
"selenium_host": "ondemand.saucelabs.com",
"silent": true,
"screenshots": {
"enabled": false,
"path": ""
},
"globals": {
"waitForConditionTimeout": 10000,
},
}
}
}
;