UNPKG

983 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 "--exit",
11 "--timeout",
12 "999999",
13 "--colors",
14 "--require",
15 "@babel/register",
16 "${workspaceFolder}/test"
17 ],
18 "console": "integratedTerminal",
19 "internalConsoleOptions": "neverOpen"
20 },
21 {
22 "type": "node",
23 "request": "launch",
24 "name": "Mocha Current File",
25 "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
26 "args": [
27 "--exit",
28 "--timeout",
29 "999999",
30 "--colors",
31 "--require",
32 "@babel/register",
33 "${file}"
34 ],
35 "console": "integratedTerminal",
36 "internalConsoleOptions": "neverOpen"
37 }
38 ]
39}
\No newline at end of file