3

我使用Jest在我的应用程序上运行单元测试。

有没有办法让它生成任何类型的报告文件?我想将报告与Bamboo集成。

4

1 回答 1

2

安装这个

https://www.npmjs.com/package/jest-junit

将此添加到您的 jest.config.file

"reporters": [
        "default",
        ["jest-junit", { outputName: "junitreport.xml" }]
    ]

在竹子上使用junit解析器,将其配置为以这种方式查找文件

**/junitreport.xml

于 2019-10-29T14:28:27.007 回答