This repository has been archived by the owner on Jun 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
nightwatch.ts
82 lines (75 loc) · 1.66 KB
/
nightwatch.ts
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
const {
NIGHTWATCH_LAUNCH_URL = 'http://localhost:5000',
SELENIUM_HOST = 'localhost',
SELENIUM_PORT = 4444,
SAUCE_USERNAME,
SAUCE_ACCESS_KEY,
TRAVIS_JOB_NUMBER,
} = process.env;
export = {
src_folders: ['dist/tests'],
output_folder: 'reports',
custom_commands_path: 'dist/commands',
custom_assertions_path: '',
page_objects_path: '',
globals_path: '',
selenium: {
start_process: false,
server_path: '',
log_path: '',
port: 4444,
cli_args: {
'webdriver.chrome.driver': '',
'webdriver.gecko.driver': '',
'webdriver.edge.driver': '',
},
},
test_settings: {
default: {
launch_url: NIGHTWATCH_LAUNCH_URL,
selenium_host: SELENIUM_HOST,
selenium_port: SELENIUM_PORT,
silent: true,
screenshots: {
enabled: false,
path: '',
},
username: SAUCE_USERNAME,
access_key: SAUCE_ACCESS_KEY,
globals: {
waitForConditionTimeout: 10000,
},
desiredCapabilities: {
build: `build-${TRAVIS_JOB_NUMBER}`,
'tunnel-identifier': TRAVIS_JOB_NUMBER,
browserName: 'chrome',
},
},
chrome: {
desiredCapabilities: {
browserName: 'chrome',
},
},
'chrome:nojs': {
desiredCapabilities: {
browserName: 'chrome',
chromeOptions: {
prefs: {
'profile.managed_default_content_settings.javascript': 2,
},
},
},
},
firefox: {
desiredCapabilities: {
browserName: 'firefox',
marionette: true,
},
},
edge: {
desiredCapabilities: {
browserName: 'MicrosoftEdge',
},
},
},
};