如上图所示,我将目标__tests__
和LinkButton.js
文件从demo
移至jest
,然后在终端中运行npm test -- --coverage
。
测试通过,但覆盖范围错误。似乎开玩笑缓存了旧的道路
这个笑话有什么问题?在线等待,非常感谢。
GitHub:https://github.com/codelegant/react-action/tree/master/public/src
答案 0 :(得分:8)
我检查了你的项目,我认为你是对的。查看执行时间,一次测试仅为〜0.5s。试试
npm test -- --coverage --no-cache
在没有缓存的情况下运行测试。现在测试执行需要大约23秒,路径应该更新。