File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1+ // For configurations:
2+ // https://code.visualstudio.com/Docs/editor/debugging
13{
24 "version" : " 0.2.0" ,
35 "configurations" : [
46 {
57 "name" : " Run the current Mocha test file" ,
68 "type" : " node" ,
79 "request" : " launch" ,
8- "runtimeArgs " : [
9- ],
10+ "internalConsoleOptions " : " openOnSessionStart " ,
11+ "runtimeArgs" : [ ],
1012 "args" : [
1113 " --colors" ,
1214 " ${relativeFile}"
1315 ],
14- "internalConsoleOptions" : " openOnSessionStart" ,
1516 "program" : " ${workspaceFolder}/node_modules/.bin/mocha" ,
1617 "sourceMaps" : true ,
1718 "cwd" : " ${workspaceRoot}"
2021 "name" : " Run the current TypeScript file" ,
2122 "type" : " node" ,
2223 "request" : " launch" ,
24+ "internalConsoleOptions" : " openOnSessionStart" ,
2325 "args" : [
2426 " ${relativeFile}"
2527 ],
You can’t perform that action at this time.
0 commit comments