Created
January 29, 2018 10:33
-
-
Save c01nd01r/cb4cd5db5fe0c5528358eb6e364879c1 to your computer and use it in GitHub Desktop.
vue jest vscode dubug config
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": [ | |
{ | |
"name": "Debug Jest Tests", | |
"type": "node", | |
"request": "launch", | |
"port": 9229, | |
"sourceMaps": true, | |
"runtimeArgs": [ | |
"--inspect-brk", | |
"${workspaceRoot}/node_modules/.bin/jest", | |
"--runInBand" | |
], | |
"console": "integratedTerminal", | |
"internalConsoleOptions": "neverOpen" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment