mirror of
https://github.com/pestphp/pest.git
synced 2026-03-12 18:57:22 +01:00
Updates warning color
This commit is contained in:
@ -294,10 +294,10 @@ final class TeamCity extends DefaultResultPrinter
|
|||||||
|
|
||||||
$results = [
|
$results = [
|
||||||
'failed' => ['count' => $result->errorCount() + $result->failureCount(), 'color' => 'fg-red'],
|
'failed' => ['count' => $result->errorCount() + $result->failureCount(), 'color' => 'fg-red'],
|
||||||
'skipped' => ['count' => $result->skippedCount(), 'color' => 'fg-yellow'],
|
'skipped' => ['count' => $result->skippedCount(), 'color' => 'fg-cyan'],
|
||||||
'warned' => ['count' => $result->warningCount(), 'color' => 'fg-yellow'],
|
'warned' => ['count' => $result->warningCount(), 'color' => 'fg-cyan'],
|
||||||
'risked' => ['count' => $result->riskyCount(), 'color' => 'fg-yellow'],
|
'risked' => ['count' => $result->riskyCount(), 'color' => 'fg-cyan'],
|
||||||
'incomplete' => ['count' => $result->notImplementedCount(), 'color' => 'fg-yellow'],
|
'incomplete' => ['count' => $result->notImplementedCount(), 'color' => 'fg-cyan'],
|
||||||
'passed' => ['count' => $this->successfulTestCount($result), 'color' => 'fg-green'],
|
'passed' => ['count' => $this->successfulTestCount($result), 'color' => 'fg-green'],
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user