Last active
June 19, 2017 15:22
-
-
Save valentin-radulescu-hs/43c011252d5ccf4a69582ecf92d0dbfa to your computer and use it in GitHub Desktop.
Debug Jest with 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
| { | |
| // Use IntelliSense to learn about possible Node.js debug attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Debug Jest", | |
| "program": "${workspaceRoot}/node_modules/jest/bin/jest.js", | |
| "stopOnEntry": false, | |
| "args": [ | |
| "--runInBand" | |
| ], | |
| "cwd": "${workspaceRoot}", | |
| "runtimeArgs": [ | |
| "--nolazy" | |
| ], | |
| "env": { | |
| "NODE_ENV": "development" | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment