Skip to content

Commit f262ca9

Browse files
committed
adding ProgressAction to common parameters
1 parent 4905552 commit f262ca9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/compliance/InModule.Help.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ BeforeDiscovery {
33
$includedNames = (Get-ChildItem "$PSScriptRoot\..\..\functions" | Where-Object Name -like "*.ps1" ).BaseName
44
$commands = Get-Command -Module (Get-Module dbops) -CommandType Cmdlet, Function | Where-Object Name -in $includedNames
55
$commonParameters = 'Debug', 'ErrorAction', 'ErrorVariable', 'InformationAction', 'InformationVariable', 'OutBuffer', 'OutVariable',
6-
'PipelineVariable', 'Verbose', 'WarningAction', 'WarningVariable'
6+
'PipelineVariable', 'ProgressAction', 'Verbose', 'WarningAction', 'WarningVariable'
77
$testCases = $commands | ForEach-Object {
88
if ($global:FunctionHelpTestExceptions -contains $_.Name) { continue }
99
@{ Command = $_; CommandName = $_.Name; Help = Get-Help $_.Name -ErrorAction SilentlyContinue; Common = $commonParameters }

0 commit comments

Comments
 (0)