-
jest-html-reporter是一款用于以HTML格式生成Jest测试结果摘要的处理器
资源介绍
:scroll:
jest-html-reporter
测试结果处理器,用于以HTML格式生成摘要。 受到启发
安装
$ yarn add jest-html-reporter --dev
用法
通过将以下条目添加到Jest配置(jest.config.json)中,将Jest配置为处理测试结果:
" reporters " : [
" default " ,
[ " ./node_modules/jest-html-reporter " , {
" pageTitle " : " Test Report "
}]
]
在终端中运行Jest时,将在根文件夹中创建一个名为test-report.html的文件,其中包含有关测试的信息。
有多个可用的配置选项。 要了解有关这些内容的更多信息,请参阅。
作为测试结果处理器的替代用法
要将报告程序作为测试结果处理器运行(在完成Jest之后而