📜  jest chrome 调试器 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:30.697000             🧑  作者: Mango

代码示例1
node --inspect-brk node_modules/.bin/jest --runInBand [any other arguments here]
or on Windows
node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand [any other arguments here]
Copy