VSCode配置:
{
"name": "tests current file",
"type": "node",
"request": "launch",
"port": 6868,
"windows": {
"program": "${workspaceFolder}\\node_modules\\mocha\\bin\\_mocha",
"args": [
"--timeout", "999999",
"--opts", "tests\\mocha.opts",
"${file}"
],
},
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
测试运行正常,但错误窗口出现在2秒后。它写着:
无法连接到运行时进程,10000毫秒后超时 - (原因:无法连接到目标:连接ECONNREFUSED 127.0.0.1:6868)。
如何确保不出现错误?