Skip to content

Instantly share code, notes, and snippets.

@bpb54321
Created May 30, 2018 21:31
Show Gist options
  • Save bpb54321/e5b07db64167dc7cb3a13ffbca76cc87 to your computer and use it in GitHub Desktop.
Save bpb54321/e5b07db64167dc7cb3a13ffbca76cc87 to your computer and use it in GitHub Desktop.
VSCode debug configuration for WebdriverIO
{
"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