diff --git a/cli/src/test.rs b/cli/src/test.rs index aca94574..90562afc 100644 --- a/cli/src/test.rs +++ b/cli/src/test.rs @@ -358,7 +358,7 @@ fn run_tests( if attributes.skip { println!( - "{:>3}.  {}", + "{:>3}. ⌀ {}", opts.test_num, paint(opts.color.then_some(AnsiColor::Yellow), &name), ); @@ -367,7 +367,7 @@ fn run_tests( if !attributes.platform { println!( - "{:>3}.  {}", + "{:>3}. ⌀ {}", opts.test_num, paint(opts.color.then_some(AnsiColor::Magenta), &name), ); @@ -387,7 +387,7 @@ fn run_tests( if attributes.error { if tree.root_node().has_error() { println!( - "{:>3}.  {}", + "{:>3}. ✓ {}", opts.test_num, paint(opts.color.then_some(AnsiColor::Green), &name) ); @@ -418,7 +418,7 @@ fn run_tests( )); } println!( - "{:>3}.  {}", + "{:>3}. ✗ {}", opts.test_num, paint(opts.color.then_some(AnsiColor::Red), &name) );