Skip to content

Commit

Permalink
Use a mode dimmed icon for skipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kzu committed Jul 3, 2024
1 parent 35678fd commit 0a1101b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dotnet-trx/TrxCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public override int Execute(CommandContext context, TrxSettings settings)
break;
case "NotExecuted":
skipped++;
MarkupLine($":fast_forward_button: [dim]{test}[/]");
MarkupLine($"[dim]:white_question_mark: {test}[/]");
break;
default:
break;
Expand Down Expand Up @@ -122,7 +122,7 @@ public override int Execute(CommandContext context, TrxSettings settings)
MarkupLine($" :cross_mark: {failed} failed");

if (skipped > 0)
MarkupLine($" :fast_forward_button: {skipped} skipped");
MarkupLine($" :white_question_mark: {skipped} skipped");

WriteLine();

Expand Down

0 comments on commit 0a1101b

Please sign in to comment.