diff --git a/PSModuleDevelopment/tests/general/Help.Tests.ps1 b/PSModuleDevelopment/tests/general/Help.Tests.ps1 index 1369fe5..b254551 100644 --- a/PSModuleDevelopment/tests/general/Help.Tests.ps1 +++ b/PSModuleDevelopment/tests/general/Help.Tests.ps1 @@ -87,7 +87,7 @@ foreach ($command in $commands) { Context "Test parameter help for $commandName" { - $common = 'Debug', 'ErrorAction', 'ErrorVariable', 'InformationAction', 'InformationVariable', 'OutBuffer', 'OutVariable', 'PipelineVariable', 'Verbose', 'WarningAction', 'WarningVariable' + $common = 'Debug', 'ErrorAction', 'ErrorVariable', 'InformationAction', 'InformationVariable', 'OutBuffer', 'OutVariable', 'PipelineVariable', 'Verbose', 'WarningAction', 'WarningVariable', 'ProgressAction' $parameters = $command.ParameterSets.Parameters | Sort-Object -Property Name -Unique | Where-Object Name -notin $common $parameterNames = $parameters.Name