diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2022-04-07 06:13:09 +0000 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2022-04-07 06:13:09 +0000 |
| commit | 4af6310a9c42fbc81ab82d6253becf1f3fdeebac (patch) | |
| tree | 26cb1d976912a32879121746500bb9a69417a885 /.vscode/launch.json | |
| parent | 4ba501e2caea4d6dc483ae7f8779031810700228 (diff) | |
| download | ao-coverage-4af6310a9c42fbc81ab82d6253becf1f3fdeebac.tar.gz ao-coverage-4af6310a9c42fbc81ab82d6253becf1f3fdeebac.tar.bz2 ao-coverage-4af6310a9c42fbc81ab82d6253becf1f3fdeebac.zip | |
#17 Move TOKEN from EnvConfig to database
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 |
