Skip to content

Commit 0e3889d

Browse files
Added launch.json (#190)
1 parent 0ed232b commit 0e3889d

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.vscode/launch.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)