Created
November 3, 2021 14:47
-
-
Save ikondrat/9524f31097af7756d2653eb9e14c1aed to your computer and use it in GitHub Desktop.
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", | |
| "name": "vscode-jest-tests", | |
| "request": "launch", | |
| "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/jest", | |
| "args": [ | |
| "test", | |
| "--env=jsdom", | |
| "--runInBand", | |
| "--colors=true", | |
| "--watchAll=false" | |
| ], | |
| "cwd": "${workspaceFolder}", | |
| "console": "integratedTerminal", | |
| "protocol": "inspector", | |
| "internalConsoleOptions": "neverOpen", | |
| "disableOptimisticBPs": true | |
| }, | |
| { | |
| "type": "node", | |
| "name": "Run test", | |
| "request": "launch", | |
| "console": "integratedTerminal", | |
| "internalConsoleOptions": "neverOpen", | |
| "disableOptimisticBPs": true, | |
| "program": "${workspaceFolder}/node_modules/.bin/jest", | |
| "args": ["test", "--color", "--u", "--runTestsByPath", "${relativeFile}"] | |
| }, | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment