Last active
March 18, 2020 13:49
-
-
Save pbroschwitz/014cac5e4e7fb13e1235d86a1d65bdd4 to your computer and use it in GitHub Desktop.
vscode launch.json - debug jest unit tests
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": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Debug Unit Tests", | |
"runtimeExecutable": "npm", | |
"runtimeArgs": [ | |
"run-script", | |
"test-debug", | |
"${file}" | |
], | |
"port": 9229 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment