Skip to content

Commit

Permalink
🐛 5.1 Compatibility: Do not use ActionPreference Ignore in PesterInte…
Browse files Browse the repository at this point in the history
…rface.ps1 (#16)
  • Loading branch information
JustinGrote authored Aug 9, 2021
1 parent c1c61b4 commit 02fb48e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Scripts/PesterInterface.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ param(
[String]$Verbosity
)

$VerbosePreference = 'Ignore'
$WarningPreference = 'Ignore'
$DebugPreference = 'Ignore'
$VerbosePreference = 'SilentlyContinue'
$WarningPreference = 'SilentlyContinue'
$DebugPreference = 'SilentlyContinue'

#region Functions
# Maps pester result status to vscode result status
Expand Down

0 comments on commit 02fb48e

Please sign in to comment.