Last active
January 5, 2018 10:17
-
-
Save flpwgr/0ca59f6f176499402b2af3d999e301ed to your computer and use it in GitHub Desktop.
Debug Jest Tests in Visual Studio Code
This file contains 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 Tests New", | |
"program": "${workspaceRoot}/node_modules/.bin/jest", | |
"args": [ | |
"-i", | |
"--watch" | |
], | |
"console": "integratedTerminal", | |
"internalConsoleOptions": "openOnSessionStart", | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment