CyberChef/nightwatch.json

30 lines
777 B
JSON
Raw Normal View History

{
2024-02-25 16:31:23 -05:00
"src_folders": ["tests/browser"],
"exclude": ["tests/browser/browserUtils.js"],
"output_folder": "tests/browser/output",
2024-02-25 16:31:23 -05:00
"test_settings": {
"default": {
"launch_url": "http://localhost:8080",
"webdriver": {
"start_process": true,
"server_path": "./node_modules/.bin/chromedriver",
"port": 9515,
"log_path": "tests/browser/output"
},
"desiredCapabilities": {
"browserName": "chrome"
},
"enable_fail_fast": true
},
2024-02-25 16:31:23 -05:00
"dev": {
"launch_url": "http://localhost:8080"
},
2024-02-25 16:31:23 -05:00
"prod": {
"launch_url": "http://localhost:8000/index.html"
}
}
}