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.
launch.json
1 parent 0ed232b commit 0e3889dCopy full SHA for 0e3889d
.vscode/launch.json
@@ -0,0 +1,26 @@
1
+{
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "type": "node",
9
+ "request": "launch",
10
+ "name": "Debug tests",
11
+ "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
12
+ "cwd": "${workspaceFolder}/tests",
13
+ "args": [
14
+ "-r",
15
+ "ts-node/register",
16
+ "--timeout",
17
+ "999999",
18
+ "--colors",
19
+ "'${workspaceFolder}/tests/**/*.ts'"
20
+ ],
21
+ "console": "integratedTerminal",
22
+ "internalConsoleOptions": "neverOpen",
23
+ "protocol": "inspector"
24
+ }
25
+ ]
26
+}
0 commit comments