cyberchef/nightwatch.json
2026-02-28 12:36:51 +00:00

38 lines
858 B
JSON

{
"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,
"server_path": "./node_modules/.bin/chromedriver",
"port": 9515,
"log_path": "tests/browser/output"
},
"desiredCapabilities": {
"browserName": "chrome",
"chromeOptions": {
"args": [
"--no-sandbox",
"--headless",
"--disable-gpu",
"--disable-dev-shm-usage"
]
}
},
"enable_fail_fast": true
},
"dev": {
"launch_url": "http://localhost:8080"
},
"prod": {
"launch_url": "http://localhost:8000/index.html"
}
}
}