Skip to content

Commit

Permalink
resolved conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
pulkit-30 committed Dec 25, 2023
1 parent 940666b commit a928527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/test_runner/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ function getCoverageReport(pad, summary, symbol, color, table) {
ArrayPrototypeForEach(ObjectKeys(summary.minimumCoverage), (key) => {
const { actual, expected, status } = summary.minimumCoverage[key];
if (!status) {
report += `${red}${pad}${prefix}minimum coverage failed for ${key}. expected: ${expected}% | actual: ${actual}%\n${color}`;
report += `${red}${pad}${prefix}minimum coverage failed for ${key}. expected: ${expected}% | actual: ${NumberPrototypeToFixed(actual, 2)}%\n${color}`;
}
});

Expand Down

0 comments on commit a928527

Please sign in to comment.