Created
December 4, 2017 18:42
-
-
Save pmalmgren/88ac4f9c7503d7e1bc23996ab7461539 to your computer and use it in GitHub Desktop.
Debug Jest from 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Jest Tests", | |
"program": "${workspaceRoot}/node_modules/jest/bin/jest.js", | |
"args": [ | |
"-i" | |
], | |
"internalConsoleOptions": "openOnSessionStart", | |
"outFiles": [ | |
"${workspaceRoot}/dist/**/*" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment