Skip to content

Commit 6e98a8b

Browse files
domoritzjheer
authored andcommitted
chore: add launch file to run mocha tests for current file
1 parent 39f5c4f commit 6e98a8b

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.vscode/launch.json

+24
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)