Refresh the tutorial output blocks against 6.1.0 - #466
Open
nohwnd wants to merge 1 commit into
Open
Conversation
The blocks were captured on 6.0.0 and we ship 6.1.0, so a reader compares their terminal against ours and it does not match. Three differences, and they are in almost every block. Normal verbosity file lines carry a test count now, "(3 tests)". Coverage prints "Code Coverage result processed in 96ms." between the two lines we showed. The Detailed header says v6.1.0, and Import-Module -PassThru has an ExportedCommands column. Also two claims on the output page. TestResult.OutputFormat has four values, not three, NUnit2.5 was missing. Output.Verbosity accepts Minimal as well, it just behaves as Normal. Fix #461
This was referenced Aug 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix #461
Stacked on #465, which is stacked on #464. Review those first.
The output blocks were captured on 6.0.0. Three things changed in 6.1.0 and they show up in nearly every block, so a reader diffs their terminal against ours and it does not match. That is worst on the prerequisites page, which exists to make them confident the setup is right.
Every Normal verbosity file line now carries a test count. Real run:
Coverage prints a line between the two we showed:
The Detailed header is
Pester v6.1.0, andImport-Module -PassThruhas anExportedCommandscolumn. I also added a sentence saying a narrow terminal prints that as a list, because it looks nothing like the table and it is the first output anybody compares.Two claims on the output page while I was there.
TestResult.OutputFormathas four values and we listed three,NUnit2.5was missing.Output.Verbosityalso acceptsMinimal, which is silently normalized toNormal, so somebody who tries it gets no error and no effect.Verification
Counts and strings taken from a real run of the finished tutorial suite on pwsh 7.5.5 with Pester 6.1.0, not transcribed by hand. Site builds.
🤖