Skip to content

Commit

Permalink
Merge pull request #229 from KaiVolland/vscode-debug-config
Browse files Browse the repository at this point in the history
Visual Studio Code
  • Loading branch information
KaiVolland committed Nov 23, 2017
2 parents 468d78c + 3aff27a commit ab5bca6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .vscode/launch.json
@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Jest Tests",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/node_modules/.bin/jest",
"--runInBand"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}

0 comments on commit ab5bca6

Please sign in to comment.