From 19e6c61acf23605bdfb3724227451f21f8b0734d Mon Sep 17 00:00:00 2001 From: xtqqczze Date: Sun, 24 May 2020 20:05:24 +0100 Subject: [PATCH] Write errors to host --- test/common/markdown/markdown.tests.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/common/markdown/markdown.tests.ps1 b/test/common/markdown/markdown.tests.ps1 index ec5b9a493213e..ee152b5c70344 100644 --- a/test/common/markdown/markdown.tests.ps1 +++ b/test/common/markdown/markdown.tests.ps1 @@ -93,6 +93,8 @@ Describe 'Common Tests - Validate Markdown Files' -Tag 'CI' { $markdownErrors += ' (See https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md for an explanation of the error codes)' } + $markdownErrors | Write-Host + $markdownErrors -join "`n" | Should -BeExactly "--EMPTY--" } }