UNPKG

825 BJSONView Raw
1{
2 "version": "0.2.0",
3 "configurations": [
4 {
5 "type": "node",
6 "request": "launch",
7 "name": "Mocha All",
8 "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
9 "args": [
10 "--timeout",
11 "999999",
12 "--colors",
13 "${workspaceFolder}/test"
14 ],
15 "console": "integratedTerminal",
16 "internalConsoleOptions": "neverOpen"
17 },
18 {
19 "type": "node",
20 "request": "launch",
21 "name": "Mocha Current File",
22 "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
23 "args": [
24 "--timeout",
25 "999999",
26 "--colors",
27 "${file}"
28 ],
29 "console": "integratedTerminal",
30 "internalConsoleOptions": "neverOpen"
31 }
32 ]
33}
\No newline at end of file