Last active
March 16, 2023 18:48
-
-
Save cabezayunke/1ed1b457a207b3ae33df4f3ae2622a6b to your computer and use it in GitHub Desktop.
vscode jestrunner settings
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
{ | |
"jestrunner.jestCommand": "jest --config ./jest.config.js", | |
"jestrunner.jestPath": "${workspaceRoot}/node_modules/.bin/jest", | |
"jestrunner.debugOptions": { | |
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/jest", | |
"args": ["--runInBand", "--no-cache"], | |
"cwd": "${workspaceRoot}", | |
"protocol": "inspector", | |
"console": "integratedTerminal", | |
"internalConsoleOptions": "neverOpen" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment