From e52c83e5beadd88cedc4ec07e7d5ea994a251d79 Mon Sep 17 00:00:00 2001 From: luke Date: Fri, 30 Jul 2021 12:35:20 +0100 Subject: [PATCH] Output improvements. --- src/Logging/TeamCity.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Logging/TeamCity.php b/src/Logging/TeamCity.php index 46c8b12f..036c9c0a 100644 --- a/src/Logging/TeamCity.php +++ b/src/Logging/TeamCity.php @@ -119,6 +119,8 @@ final class TeamCity extends DefaultResultPrinter { if (static::isPestTestSuite($suite)) { $this->writeWithColor('fg-white, bold', ' '.substr_replace($suite->getName(), '', 0, 2).' '); + } else { + $this->writeWithColor('fg-white, bold', ' '.$suite->getName()); } $this->flowId = (int) getmypid(); @@ -194,6 +196,8 @@ final class TeamCity extends DefaultResultPrinter public function endTestSuite(TestSuite $suite): void { $suiteName = $suite->getName(); + + $this->writeNewLine(); $this->writeNewLine(); if (file_exists($suiteName) || !method_exists($suiteName, '__getFileName')) {