CyberChef/nightwatch.json

31 lines
586 B
JSON
Raw Normal View History

{
2021-01-22 17:16:11 +01:00
"src_folders": ["tests/browser"],
"output_folder": "tests/browser/output",
"test_settings": {
"default": {
"launch_url": "http://localhost:8080",
"webdriver": {
"start_process": true,
2021-07-28 16:56:01 +02:00
"server_path": "./node_modules/chromedriver/lib/chromedriver/chromedriver",
"port": 9515,
"log_path": false
},
"desiredCapabilities": {
"browserName": "chrome"
}
},
"dev": {
"launch_url": "http://localhost:8080"
},
"prod": {
"launch_url": "http://localhost:8000/index.html"
}
}
}