Skip to content

Commit

Permalink
Dim skipped tests by default
Browse files Browse the repository at this point in the history
Related to #3
  • Loading branch information
kzu committed Jul 2, 2024
1 parent bc12450 commit 84bf46f
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 @@ -22,7 +22,7 @@ public class TrxSettings : CommandSettings
[Description("Include test output")]
[CommandOption("-o|--output")]
[DefaultValue(false)]
public bool? Output { get; init; }
public bool Output { get; init; }

[Description("Recursively search for *.trx files")]
[CommandOption("-r|--recursive")]
Expand Down Expand Up @@ -71,7 +71,7 @@ public override int Execute(CommandContext context, TrxSettings settings)
}
break;
case "NotExecuted":
MarkupLine($":fast_forward_button: {test}");
MarkupLine($":fast_forward_button: [dim]{test}[/]");
skipped++;
break;
default:
Expand Down

0 comments on commit 84bf46f

Please sign in to comment.