1

我能够使用 c8 生成代码覆盖率报告。 在此处输入图像描述

但是我如何每次输出总覆盖率?目前,只有当它小于这样的阈值时,它才会输出总覆盖率%。 在此处输入图像描述

但我想在每次运行时查看 %。

配置:

{
  "include": "app",
  "check-coverage": true,
  "lines": 99,
  "reporter": ["text","cobertura"]
}
4

1 回答 1

0

我只需要添加“文本摘要”作为记者之一。

"reporter": ["text","text-summary","cobertura"]
于 2020-10-28T08:24:28.010 回答