gpt4 book ai didi

istanbul - 重命名 Istanbul 尔覆盖率报告 xml 文件

转载 作者:行者123 更新时间:2023-12-04 01:54:42 25 4
gpt4 key购买 nike

我正在使用 coverageIstanbulReporter 为我的 javascript 项目生成代码覆盖率报告。默认输出 xml 文件名为“cobertura-coverage.xml”。我想将此文件重命名为其他名称。我找不到这个的配置。

 coverageIstanbulReporter: {
reports: ['html', 'lcovonly', 'cobertura'],
dir: path.join(__dirname, 'coverage'),
fixWebpackSourcePaths: true
},

最佳答案

它在 main readme of the project 中有所暗示,但我也找不到直接说明。我通过 searching all of Github in code 找到的,这通常是了解其他人如何使用东西的好方法。这并不总是正确或适用的,但它会指向正确的方向。

您必须添加report-config 报告类型的名称。像这样:

coverageIstanbulReporter: {
reports: ['html', 'lcovonly', 'cobertura'],
dir: path.join(__dirname, 'coverage'),
fixWebpackSourcePaths: true,
'report-config': {
cobertura: {
file: 'custom_file_name.xml'
}
},
},

关于istanbul - 重命名 Istanbul 尔覆盖率报告 xml 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51198224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com