我正在尝试在vscode中调试我的reactapp并使用以下配置:
{
"name": "Debug CRA Tests",
"type": "node",
"request": "launch",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/react-scripts",
"args": [
"test",
"--runInBand",
"--no-cache"
],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
当我开始调试时,将显示测试菜单,并放入现有文件名。但是它返回:'未找到测试'?如何解决此问题或如何更新文件扩展名/位置的配置?