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 b748c2d commit 8e7fd07Copy full SHA for 8e7fd07
.vscode/launch.json
@@ -1,6 +1,26 @@
1
{
2
"version": "0.2.0",
3
"configurations": [
4
+ {
5
+ "type": "node",
6
+ "request": "launch",
7
+ "name": "Mocha Tests",
8
+ "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
9
+ "args": [
10
+ "-u",
11
+ "tdd",
12
+ "--timeout",
13
+ "999999",
14
+ "--colors",
15
+ "-r",
16
+ "ts-node/register",
17
+ "${workspaceFolder}/test/**/*.spec.ts"
18
+ ],
19
+ "env": {
20
+ "TS_NODE_FILES": "true"
21
+ },
22
+ "internalConsoleOptions": "openOnSessionStart"
23
24
25
"name": "Build All",
26
"type": "node",
0 commit comments