We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39f5c4f commit 6e98a8bCopy full SHA for 6e98a8b
.vscode/launch.json
@@ -0,0 +1,24 @@
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
+ "args": [
9
+ "--timeout",
10
+ "999999",
11
+ "--colors",
12
+ "${relativeFile}"
13
+ ],
14
+ "internalConsoleOptions": "openOnSessionStart",
15
+ "name": "Mocha Tests",
16
+ "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
17
+ "request": "launch",
18
+ "skipFiles": [
19
+ "<node_internals>/**"
20
21
+ "type": "node"
22
+ }
23
+ ]
24
+}
0 commit comments