在VS代码中调试打字稿测试

时间:2018-11-08 09:42:58

标签: typescript debugging visual-studio-code testcafe

我正在从http://devexpress.github.io/testcafe/documentation/recipes/debug-in-visual-studio-code.html开始执行以下步骤,以VS代码调试testcafe 打字稿测试,但是由于某些原因,它不适用于调试打字稿测试。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

好吧,我的launch.json文件发现了问题及其所在

以前在launch.json中的 program 参数中,我正在使用"program": "${workspaceRoot}/node_modules/.bin/testcafe"将其更改为"program": "${workspaceRoot}/node_modules/testcafe/bin/testcafe.js",并且调试正在工作。