Created
September 29, 2017 12:37
-
-
Save sorenlouv/2eb872e00ff49e85af996011f876c764 to your computer and use it in GitHub Desktop.
VSCode config for Jest runner
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": [ | |
{ | |
"name": "Jest", | |
"type": "node", | |
"request": "launch", | |
"args": ["--runInBand"], | |
"port": 9229, | |
"address": "localhost", | |
"stopOnEntry": false, | |
"runtimeExecutable": null, | |
"sourceMaps": true, | |
"runtimeArgs": ["--inspect-brk", "./scripts/jest", "${file}"], | |
"cwd": "${workspaceRoot}" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment