You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ($null-ne$frameworkData-and$frameworkData['ShowPendingDeprecation']) {
370
-
Write-PesterHostMessage'**DEPRECATED**: The -Pending parameter of Set-ItResult is deprecated. The parameter will be removed in a future version of Pester.'-ForegroundColor $ReportTheme.Warning
371
-
# Show it only once.
372
-
break
373
-
}
374
-
}
375
350
}
376
351
377
352
functionWrite-CoverageReport {
@@ -713,7 +688,7 @@ function Get-WriteScreenPlugin ($Verbosity) {
713
688
$margin=$ReportStrings.Margin* ($level)
714
689
$error_margin=$margin+$ReportStrings.Margin
715
690
$out=$_test.ExpandedName
716
-
if (-not$_test.Skip-and@('PesterTestSkipped','PesterTestInconclusive','PesterTestPending') -contains$Result.ErrorRecord.FullyQualifiedErrorId) {
691
+
if (-not$_test.Skip-and@('PesterTestSkipped','PesterTestInconclusive') -contains$Result.ErrorRecord.FullyQualifiedErrorId) {
717
692
$skippedMessage= [String]$_Test.ErrorRecord
718
693
[String]$out+="$skippedMessage"
719
694
}
@@ -789,16 +764,6 @@ function Get-WriteScreenPlugin ($Verbosity) {
789
764
break
790
765
}
791
766
792
-
Pending {
793
-
if ($PesterPreference.Output.Verbosity.Value-in'Detailed','Diagnostic') {
0 commit comments