diff options
author | 2022-10-02 18:02:54 -0700 | |
---|---|---|
committer | 2022-10-02 18:02:54 -0700 | |
commit | ed82b919a03d9044cb106401030eecf11dc2db81 (patch) | |
tree | 0a2abe54140228d8bcfbd637212a9c6aa5b655e6 /src | |
parent | 4fa065180babd66958da2f129d25c604abbc8993 (diff) | |
download | bun-ed82b919a03d9044cb106401030eecf11dc2db81.tar.gz bun-ed82b919a03d9044cb106401030eecf11dc2db81.tar.zst bun-ed82b919a03d9044cb106401030eecf11dc2db81.zip |
Remove extra green
Diffstat (limited to 'src')
-rw-r--r-- | src/cli/test_command.zig | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/cli/test_command.zig b/src/cli/test_command.zig index d8d243983..7b564d908 100644 --- a/src/cli/test_command.zig +++ b/src/cli/test_command.zig @@ -374,12 +374,7 @@ pub const TestCommand = struct { Output.prettyError(" {d:5>} fail<r>\n", .{reporter.summary.fail}); - if (reporter.summary.fail == 0 and reporter.summary.expectations > 0) { - Output.prettyError("<r><green>", .{}); - } else { - Output.prettyError("<r>", .{}); - } - if (reporter.summary.expectations > 0) Output.prettyError(" {d:5>} expectations\n", .{reporter.summary.expectations}); + if (reporter.summary.expectations > 0) Output.prettyError(" {d:5>} expect() calls\n", .{reporter.summary.expectations}); Output.prettyError( \\ Ran {d} tests across {d} files |