Skip to content

Commit d83bdc9

Browse files
committed
Do not timeout during debugging
1 parent 4cfc164 commit d83bdc9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.vscode/launch.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
"request": "launch",
88
"cwd": "${workspaceRoot}",
99
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
10+
"stopOnEntry": false,
1011
"args": [
1112
"./src/*-unit.js",
1213
"--require", "babel-register", "testutils.js",
13-
"--reporter", "spec"
14+
"--reporter", "spec",
15+
"--no-timeouts"
1416
],
1517
"runtimeArgs": [
1618
"--nolazy"

0 commit comments

Comments
 (0)