We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d92cba commit 03ffdecCopy full SHA for 03ffdec
1 file changed
tests/unit/validation/check/validation-check-doc-coverage.tests.ps1
@@ -71,7 +71,7 @@ function Get-DocCoverageStrictFixture {
71
)
72
73
$result.ExitCode | Should -Be 1
74
- $combined = @($result.Output; $result.Error; $result.StdErr) -join "`n"
75
- $combined | Should -Match 'Missing markdown|blocking issue|Documentation coverage check failed|Exit-WithCode'
+ # Invoke-TestScriptFile merges streams into Output; Exit-WithCode text may vary by host capture.
+ [string]$result.Output | Should -Match 'Missing markdown|blocking issue|Documentation coverage check failed|Exit-WithCode|blocking issue\(s\)'
76
}
77
0 commit comments