-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnightwatch.conf.cjs
More file actions
39 lines (34 loc) · 979 Bytes
/
nightwatch.conf.cjs
File metadata and controls
39 lines (34 loc) · 979 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
38
39
// _ _ _ _ _ _ _
// | \ | |(_) | | | | | | | |
// | \| | _ __ _ | |__ | |_ __ __ __ _ | |_ ___ | |__
// | . ` || | / _` || '_ \ | __|\ \ /\ / / / _` || __| / __|| '_ \
// | |\ || || (_| || | | || |_ \ V V / | (_| || |_ | (__ | | | |
// \_| \_/|_| \__, ||_| |_| \__| \_/\_/ \__,_| \__| \___||_| |_|
// __/ |
// |___/
//
const path = require('path');
module.exports = {
src_folders: ['test/src', 'test/e2e'],
globals_path: path.resolve(__dirname, 'test', 'lib', 'globals.cjs'),
webdriver: {
start_process: true
},
test_settings: {
default: {
launch_url: 'http://localhost:5173',
desiredCapabilities: {
browserName: 'chrome'
},
exclude: 'test/src/**'
},
unittests: {
unit_tests_mode: true,
filter: 'test/src/**',
exclude: ''
}
},
test_workers: {
enabled: false
}
};