本文主要是介绍【jest 调试 - vscode debug】,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
jest 测试typescript,如果想对测试文件本身断点调试。
安装jest相关依赖
# jest本体
npm install --save-dev jest
# jest的类型声明
npm install --save-dev @types/jest
# typescript中使用
npm install --save-dev ts-jest
launch.json 配置参考
{"type": "node","request": "launch","name": "test","runtimeExecutable": "npx","runtimeArgs": ["jest", "--runInBand", "${workspaceFolder}/test/index.test.ts"],"protocol": "inspector"
}
这篇关于【jest 调试 - vscode debug】的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!