Last active
October 9, 2019 13:34
-
-
Save favio41/ead19edc07632242e0073752fbcfff8b to your computer and use it in GitHub Desktop.
Debug jest test of current open file
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": "Jest Current file", | |
"program": "${workspaceFolder}/node_modules/.bin/jest", | |
"args": [ | |
"${file}" | |
], | |
"internalConsoleOptions": "openOnSessionStart" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment