CyberChef/nightwatch.json

33 lines
658 B
JSON
Raw Normal View History

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