We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Below VS Code configuration will allow you to run current Mocha Test File with debugger attached.
{ "type": "node", "request": "launch", "name": "Mocha Current File", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "args": ["-u", "tdd", "--timeout", "999999", "--colors", "${file}"], "internalConsoleOptions": "openOnSessionStart" }