最近在做jest的测试,发现关于jest的文章翻来覆去就那几篇,在这里补充一篇
- 我在执行 yarn test 的时候,觉得在小黑框里看测试结果有点难受,就想去网上找一些关于jest reporter的文章,结果没有。
- 在我不懈的努力下,找到了jest-html-reporter
这里放上链接:https://github.com/Hargne/jes...
1. 先安装 :
yarn add jest-html-reporter --dev
or
npm install jest-html-reporter --save-dev
2. 当然了,在package.json中也要做相关配置。
"jest": {
"testResultsProcessor": "./node_modules/jest-html-reporter"
}
3. 然后再执行yarn test就会在最外层生成test-report.html,打开它就好了。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。