Closed anshooarora closed 4 months ago
Version 4 had a cleaner representation of time taken for test:
<p class="duration text-sm">@test.RunDuration.ToString("''h'h:'m'm:'s's+'fff'ms'")</p> <span class="datetime">@test.StartTime.ToString("HH:mm:ss tt")</span>
Current version (5.0.4) shows it as following: <span>@timeTaken ms</span> where timeTaken = Math.Round(test.TimeTaken, 2);.
<span>@timeTaken ms</span>
timeTaken = Math.Round(test.TimeTaken, 2);
218
Version 4 had a cleaner representation of time taken for test:
Current version (5.0.4) shows it as following:
<span>@timeTaken ms</span>
wheretimeTaken = Math.Round(test.TimeTaken, 2);
.