關於 jest 測試效果如安在瀏覽器上顯現的題目

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

    原文作者:WHMAX
    原文地址: https://segmentfault.com/a/1190000015266684
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞