diff options
author | 2023-01-09 10:33:39 -0800 | |
---|---|---|
committer | 2023-01-09 10:33:39 -0800 | |
commit | 84ee02cb4ba98d6bb4a99811b3527ae707efa5d3 (patch) | |
tree | ca8f062de9404b7e73c1b33c7f6d4f5db0feecfc | |
parent | 7a92bf87c851ac65fb889e72040062c8c3055338 (diff) | |
download | bun-84ee02cb4ba98d6bb4a99811b3527ae707efa5d3.tar.gz bun-84ee02cb4ba98d6bb4a99811b3527ae707efa5d3.tar.zst bun-84ee02cb4ba98d6bb4a99811b3527ae707efa5d3.zip |
Update test_command.zig
-rw-r--r-- | src/cli/test_command.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/test_command.zig b/src/cli/test_command.zig index 39d4a7dbc..a36561be0 100644 --- a/src/cli/test_command.zig +++ b/src/cli/test_command.zig @@ -48,9 +48,9 @@ const uws = @import("bun").uws; fn fmtStatusTextLine(comptime status: @Type(.EnumLiteral), comptime emoji: bool) []const u8 { comptime { return switch (status) { - .pass => Output.prettyFmt("<green>✓<r>", emoji), + .pass => Output.prettyFmt("<r><green>✓<r>", emoji), .fail => Output.prettyFmt("<r><red>✗<r>", emoji), - .skip => Output.prettyFmt("<r><yellow>⍉", emoji), + .skip => Output.prettyFmt("<r><yellow>-<d>", emoji), else => @compileError("Invalid status " ++ @tagName(status)), }; } |