我正在调试第三方库单元测试。测试用例正在使用tape 和tape-run 运行。它使用下面的命令来运行测试用例。
"test": "browserify -x react-native -x react/addons -x react/lib/ReactContext -x react/lib/ExecutionEnvironment test/index.js -t [ babelify --presets [ es2015 react ] --plugins [ transform-decorators-legacy transform-class-properties ] ] | tape-run | tap-spec"
我想在 vscode 中放置断点来调试特定的测试文件。我是否需要使用 node debug 以及上述命令在 vs 代码中放置断点?