We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44f2ffd commit 541a235Copy full SHA for 541a235
.vscode/launch.json
@@ -0,0 +1,32 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "type": "node",
6
+ "request": "launch",
7
+ "name": "Run Typescript Tests",
8
+ "program": "${workspaceFolder}/node_modules/.bin/jest",
9
+ "args": [
10
+ "--coverage"
11
+ ],
12
+ "env": {
13
+ "NODE_OPTIONS": "--experimental-vm-modules"
14
+ },
15
+ "console": "integratedTerminal"
16
17
18
19
20
+ "name": "Run Tests from current Typescript Test File",
21
22
23
+ "${file}",
24
25
26
27
28
29
30
+ }
31
+ ]
32
+}
0 commit comments