Closed andreamah closed 2 months ago
When testing https://github.com/microsoft/vscode-js-debug/issues/1984, I found that the Add Configuration in launch.json still adds mocha using "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
Add Configuration
launch.json
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
Node.js: Mocha Tests
runtimeExecutable: "mocha"
When testing https://github.com/microsoft/vscode-js-debug/issues/1984, I found that the
Add Configuration
inlaunch.json
still adds mocha using"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
Add Configuration
Node.js: Mocha Tests
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
instead of the newruntimeExecutable: "mocha"
:bug: