我正在尝试使用VSCode调试我的mocha测试。测试运行完成,但由于某种原因,我在测试文件中设置的任何断点都显示为灰色并被消息忽略,“未验证的断点,断点已设置但尚未绑定”。这是我的launch.json配置:
{
"name": "Run mocha",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"stopOnEntry": false,
"args": [
"--recursive",
"--compilers",
"js:babel-core/register",
"--require",
"babel-polyfill",
"--no-timeouts",
"--colors"
],
"runtimeExecutable": null,
"cwd": "${workspaceRoot}",
"env": { "NODE_ENV": "testing" },
"sourceMaps": false
}
我已经完成了不同的Github问题主题和SO问题,但还没有让它发挥作用。有什么建议吗?