Format-Pester
Format-Pester copied to clipboard
Powershell module for documenting Pester's results
``` Tests Passed: 231, Failed: 0, Skipped: 123 NotRun: 0 Select-Object: C:\Users\xxxxx\Documents\PowerShell\Modules\Format-Pester\1.6.0\Public\Format-Pester.ps1:452 Line | 452 | … stsResults = $PesterResult | Select-Object -ExpandProperty TestResult | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | Property "TestResult" cannot...
The first try to run Format-Pester on Ubuntu Linux 16.04 ``` Name Value ---- ----- PSVersion 6.0.0-beta PSEdition Core GitCommitId v6.0.0-beta.3 OS Linux 4.4.0-78-generic #99-Ubuntu SMP Thu Apr 27 15:29:09...
I have tested the following script to test nested Pester Context blocks: ```PowerShell #pester nested context test with 4.0.3 describe "Nested Context Test with Pester 4.0.3" { context "Context #1"...
Currently styles used to format documents are hardcoded in Format-Pester.ps1 e.g. https://github.com/equelin/Format-Pester/blob/master/Format-Pester/Public/Format-Pester.ps1#L257-L261 Styles used to format of generated documents should be configurable e.g. via style files / templates. @iainbrighton ,...