Last active
August 31, 2020 21:31
-
-
Save nmchenry01/23dd6f2159e8ffb6a2c3997d02b3d8ce to your computer and use it in GitHub Desktop.
Jest debug configuraiton "Debugging NestJS with VSCode"
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
| { | |
| "name": "Debug Jest Tests", | |
| "type": "node", | |
| "request": "launch", | |
| "runtimeArgs": [ | |
| "--inspect-brk", | |
| "${workspaceRoot}/node_modules/.bin/jest", | |
| "--runInBand", | |
| "--coverage", | |
| "false" | |
| ], | |
| "console": "integratedTerminal" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment