aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-10-02 18:02:54 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-10-02 18:02:54 -0700
commited82b919a03d9044cb106401030eecf11dc2db81 (patch)
tree0a2abe54140228d8bcfbd637212a9c6aa5b655e6 /src
parent4fa065180babd66958da2f129d25c604abbc8993 (diff)
downloadbun-ed82b919a03d9044cb106401030eecf11dc2db81.tar.gz
bun-ed82b919a03d9044cb106401030eecf11dc2db81.tar.zst
bun-ed82b919a03d9044cb106401030eecf11dc2db81.zip
Remove extra green
Diffstat (limited to 'src')
-rw-r--r--src/cli/test_command.zig7
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