-
-
Notifications
You must be signed in to change notification settings - Fork 477
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add count #2458
base: main
Are you sure you want to change the base?
Conversation
@@ -728,7 +728,7 @@ function Get-WriteScreenPlugin ($Verbosity) { | |||
throw "Unsupported level of output '$($PesterPreference.Output.Verbosity.Value)'" | |||
} | |||
|
|||
$humanTime = "$(Get-HumanTime ($_test.Duration)) ($(Get-HumanTime $_test.UserDuration)|$(Get-HumanTime $_test.FrameworkDuration))" | |||
$humanTime = Get-HumanTime $_test.Duration |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also affects Detailed++. Intentional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intentional, but will revert.
Good idea with |
I'd prefer parentheses on the first element as it helps separate filename from details at a glance, especially without colored output (plaintext/colorblind/etc) Don't have a strong opinion on whether it should contain testcount or duration. I guessed you felt |
/backport to rel/5.x.x |
Started backporting to rel/5.x.x: https://github.com/pester/Pester/actions/runs/12698516948 |
/backport to rel/5.x.x |
Started backporting to rel/5.x.x: https://github.com/pester/Pester/actions/runs/12698540492 |
Both approaches look pretty ugly, ideas?
Fix #2434