Created
May 30, 2018 21:31
-
-
Save bpb54321/e5b07db64167dc7cb3a13ffbca76cc87 to your computer and use it in GitHub Desktop.
VSCode debug configuration for WebdriverIO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "WebdriverIO", | |
"type": "node", | |
"request": "launch", | |
"protocol": "inspector", | |
"address": "localhost", | |
"port": 5859, | |
"timeout": 20000, | |
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/wdio", | |
"windows": { | |
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/wdio.cmd" | |
}, | |
"cwd": "${workspaceRoot}", | |
"console": "integratedTerminal", | |
"args":[ | |
"--spec", "tests/webdriverio/features/delete-blogs.feature" | |
], | |
"env": { | |
"DEBUG": "true", | |
} | |
} | |
] | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment