]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
test: add config for vscode
authorEduardo San Martin Morote <posva13@gmail.com>
Fri, 25 Jun 2021 10:03:16 +0000 (12:03 +0200)
committerEduardo San Martin Morote <posva13@gmail.com>
Fri, 25 Jun 2021 10:03:16 +0000 (12:03 +0200)
.vscode/launch.json [new file with mode: 0644]

diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644 (file)
index 0000000..243195a
--- /dev/null
@@ -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"
+      ]
+    }
+  ]
+}