forked from ndious/BbCoreJs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nightwatch.json
25 lines (24 loc) · 987 Bytes
/
nightwatch.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
{
"src_folders" : ["nightwatch/tests"],
"output_folder" : "nightwatch/reports",
"custom_commands_path" : ["nightwatch/commands/login", "nightwatch/commands/utils", "nightwatch/commands/content", "nightwatch/commands/medialibrary"],
"custom_assertions_path" : "",
"page_objects_path" : ["nightwatch/objects/login", "nightwatch/objects/content", "nightwatch/objects/page", "nightwatch/objects/toolbar", "nightwatch/objects/medialibrary"],
"globals_path" : "nightwatch/configuration/globals.json",
"test_settings" : {
"default" : {
"silent": true,
"screenshots" : {
"enabled" : true,
"on_failure" : true,
"on_error" : true,
"path" : "nightwatch/screenshots"
},
"desiredCapabilities": {
"browserName": "firefox",
"javascriptEnabled": true,
"acceptSslCerts": true
}
}
}
}