關於 jest 測試結果如何在瀏覽器上顯示的問題

最近在作jest的測試,發現關於jest的文章翻來覆去就那幾篇,在這裏補充一篇

  • 我在執行 yarn test 的時候,以爲在小黑框裏看測試結果有點難受,就想去網上找一些關於jest reporter的文章,結果沒有。
  • 在我不懈的努力下,找到了jest-html-reporter
這裏放上連接: https://github.com/Hargne/jes...

1. 先安裝 :html

yarn add  jest-html-reporter --dev

or

npm install jest-html-reporter --save-dev

2. 固然了,在package.json中也要作相關配置。node

"jest": {
     "testResultsProcessor": "./node_modules/jest-html-reporter"
 }

3. 而後再執行yarn test就會在最外層生成test-report.html,打開它就行了。git

相關文章
相關標籤/搜索