1
0
mirror of synced 2025-01-10 12:11:49 +01:00
CyberChef/nightwatch.json

32 lines
610 B
JSON
Raw Normal View History

{
2021-01-22 16:16:11 +00:00
"src_folders": ["tests/browser"],
"output_folder": "tests/browser/output",
"test_settings": {
"default": {
"launch_url": "http://localhost:8080",
"webdriver": {
"start_process": true,
2021-08-10 14:26:33 +01:00
"server_path": "./node_modules/.bin/chromedriver",
"port": 9515,
2022-04-06 10:51:52 +01:00
"log_path": "tests/browser/output"
},
"desiredCapabilities": {
"browserName": "chrome"
2022-04-14 13:16:36 +01:00
},
"enable_fail_fast": true
},
"dev": {
"launch_url": "http://localhost:8080"
},
"prod": {
"launch_url": "http://localhost:8000/index.html"
}
}
}