From: Eduardo San Martin Morote Date: Fri, 25 Jun 2021 10:03:16 +0000 (+0200) Subject: test: add config for vscode X-Git-Tag: v2.0.0-beta.5~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8c1666d08be40617c87ff0da8dfc25a9ea12d70;p=thirdparty%2Fvuejs%2Fpinia.git test: add config for vscode --- diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..243195a7 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,21 @@ +{ + "configurations": [ + { + "type": "node", + "name": "vscode-jest-tests", + "request": "launch", + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "disableOptimisticBPs": true, + "cwd": "${workspaceFolder}", + "runtimeExecutable": "yarn", + "args": [ + "jest", + "--watch", + "--runInBand", + "--watchAll=false", + "--collectCoverage=false" + ] + } + ] +}