diff options
Diffstat (limited to '.vscode/launch.json')
| -rw-r--r-- | .vscode/launch.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 1ab3567..957ff80 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -15,6 +15,21 @@ "outFiles": [ "${workspaceFolder}/**/*.js" ] + }, + { + "type": "node", + "name": "vscode-jest-tests", + "request": "launch", + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "disableOptimisticBPs": true, + "cwd": "/workspace/src", + "runtimeExecutable": "yarn", + "args": [ + "jest", + "--runInBand", + "--watchAll=false" + ] } ] }
\ No newline at end of file |
