近來在做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,翻開它就好了。