Skip to content
Snippets Groups Projects
Commit 108733a2 authored by François Grand's avatar François Grand
Browse files

refactor: add VSCode launch configuration for WebDriverIO test debug

refs #618
parent a7c16391
No related branches found
No related tags found
2 merge requests!225Release v4.17.0,!221Resolve "Migration des tests e2e vers WebDriverIO"
......@@ -39,6 +39,21 @@
"${workspaceRoot}/dist/out-tsc-e2e/*.js"
],
"skipSourceMapSupport": true
},
{
"name": "WDIO select spec",
"type": "node",
"request": "launch",
"args": ["wdio.conf.ts", "--spec", "${file}"],
"cwd": "${workspaceFolder}",
"autoAttachChildProcesses": true,
"program": "${workspaceRoot}/node_modules/@wdio/cli/bin/wdio.js",
"console": "integratedTerminal",
"skipFiles": [
"${workspaceFolder}/node_modules/**/*.js",
"${workspaceFolder}/lib/**/*.js",
"<node_internals>/**/*.js"
]
}
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment