Skip to content

Commit

Permalink
Add launch config for running the test suite with the vscode debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
papandreou committed Apr 19, 2019
1 parent 6db3858 commit 82148b3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
@@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"protocol": "inspector",
"type": "node",
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": ["--timeout", "9999999999"],
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": [
"<node_internals>/**" // Prevent stepping through async_hooks.js et al.
]
}
]
}

0 comments on commit 82148b3

Please sign in to comment.