aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-01-16 21:37:12 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-01-16 21:37:12 -0800
commit0546aa4fd550b2edc590756e9af23c2011a68003 (patch)
tree78e8096e7809efdec36d0b2206339fc64347c656
parentb8b7ad49827ab687a98f88916b4e85eb3720f159 (diff)
downloadbun-0546aa4fd550b2edc590756e9af23c2011a68003.tar.gz
bun-0546aa4fd550b2edc590756e9af23c2011a68003.tar.zst
bun-0546aa4fd550b2edc590756e9af23c2011a68003.zip
Make entire test line dim
-rw-r--r--src/cli/test_command.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/test_command.zig b/src/cli/test_command.zig
index b1f9b838b..bac8f69d6 100644
--- a/src/cli/test_command.zig
+++ b/src/cli/test_command.zig
@@ -110,7 +110,7 @@ pub const CommandLineReporter = struct {
const display_label = if (label.len > 0) label else "test";
- const color_code = comptime if (skip) "<yellow><d>" else "";
+ const color_code = comptime if (skip) "<d>" else "";
if (Output.enable_ansi_colors_stderr) {
for (scopes) |_, i| {
@@ -135,7 +135,7 @@ pub const CommandLineReporter = struct {
}
}
- const line_color_code = if (comptime skip) "<r><yellow><d>" else "<r><b>";
+ const line_color_code = if (comptime skip) "<r><d>" else "<r><b>";
if (Output.enable_ansi_colors_stderr)
writer.print(comptime Output.prettyFmt(line_color_code ++ " {s}<r>", true), .{display_label}) catch unreachable