From: Eduardo San Martin Morote Date: Fri, 20 Dec 2019 12:57:16 +0000 (+0100) Subject: test: add launch.json X-Git-Tag: v4.0.0-alpha.0~131 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5cbb979526a6af2c7adca89b6f5fce2cbbd1bc07;p=thirdparty%2Fvuejs%2Frouter.git test: add launch.json --- diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..6cc10964 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,21 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "name": "vscode-jest-tests", + "request": "launch", + "args": [ + "--runInBand" + ], + "cwd": "${workspaceFolder}", + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "disableOptimisticBPs": true, + "program": "${workspaceFolder}/node_modules/jest/bin/jest" + } + ] +} \ No newline at end of file