-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnightwatch_from_app_root.json
executable file
·44 lines (42 loc) · 1.24 KB
/
nightwatch_from_app_root.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"src_folders" : ["tests/nightwatch/walkthroughs"],
"output_folder" : "tests/.reports/nightwatch-acceptance",
"custom_commands_path" : [
"tests/nightwatch/commands",
"tests/nightwatch/commands/components",
"tests/nightwatch/commands/methods"
],
"custom_assertions_path" : "tests/nightwatch/assertions",
"globals_path" : "tests/nightwatch/globals.json",
"selenium" : {
"start_process" : true,
"server_path" : ".meteor/local/build/programs/server/assets/packages/clinical_nightwatch/selenium/selenium-server-standalone-2.44.0.jar",
"log_path" : "tests/nightwatch/logs",
"host" : "127.0.0.1",
"port" : 4444,
"cli_args": {
"webdriver.chrome.driver": "selenium/chromedriver"
}
},
"test_settings" : {
"default" : {
"launch_url" : "http://localhost:3000",
"selenium_host" : "127.0.0.1",
"selenium_port" : 4444,
"pathname": "/wd/hub",
"silent" : true,
"disable_colors": false,
"firefox_profile" : false,
"ie_driver" : "",
"screenshots" : {
"enabled" : false,
"path" : ""
},
"desiredCapabilities" : {
"browserName" : "firefox",
"javascriptEnabled" : true,
"acceptSslCerts" : true
}
}
}
}