fix(cli): replace nerd font symbols with unicode symbols
This commit is contained in:
parent
8368f9994d
commit
8de3a2ee13
1 changed files with 4 additions and 4 deletions
|
|
@ -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)
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue