We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f2c8ed6 + d1c8372 commit 00c9de8Copy full SHA for 00c9de8
src/Cli/dotnet/Commands/Test/Terminal/TerminalTestReporter.cs
@@ -553,9 +553,9 @@ private bool GetShowPassedTests()
553
554
TerminalColor color = outcome switch
555
{
556
- TestOutcome.Error or TestOutcome.Fail or TestOutcome.Canceled or TestOutcome.Timeout => TerminalColor.Red,
557
- TestOutcome.Skipped => TerminalColor.Yellow,
558
- TestOutcome.Passed => TerminalColor.Green,
+ TestOutcome.Error or TestOutcome.Fail or TestOutcome.Canceled or TestOutcome.Timeout => TerminalColor.DarkRed,
+ TestOutcome.Skipped => TerminalColor.DarkYellow,
+ TestOutcome.Passed => TerminalColor.DarkGreen,
559
_ => throw new NotSupportedException(),
560
};
561
string outcomeText = outcome switch
0 commit comments