diff --git a/src/Extension.php b/src/Extension.php index 456f304..b842ae3 100644 --- a/src/Extension.php +++ b/src/Extension.php @@ -369,9 +369,9 @@ public function getCaseForTest(TestInterface $test) */ public function formatTime($time) { - // TestRail doesn't support subsecond times + // In TestRail version 5.5 was added support of milliseconds if ($time < 1.0) { - return '0s'; + return round($time, 2) .'s'; } $formatted = '';