We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4905552 commit f262ca9Copy full SHA for f262ca9
tests/compliance/InModule.Help.Tests.ps1
@@ -3,7 +3,7 @@ BeforeDiscovery {
3
$includedNames = (Get-ChildItem "$PSScriptRoot\..\..\functions" | Where-Object Name -like "*.ps1" ).BaseName
4
$commands = Get-Command -Module (Get-Module dbops) -CommandType Cmdlet, Function | Where-Object Name -in $includedNames
5
$commonParameters = 'Debug', 'ErrorAction', 'ErrorVariable', 'InformationAction', 'InformationVariable', 'OutBuffer', 'OutVariable',
6
- 'PipelineVariable', 'Verbose', 'WarningAction', 'WarningVariable'
+ 'PipelineVariable', 'ProgressAction', 'Verbose', 'WarningAction', 'WarningVariable'
7
$testCases = $commands | ForEach-Object {
8
if ($global:FunctionHelpTestExceptions -contains $_.Name) { continue }
9
@{ Command = $_; CommandName = $_.Name; Help = Get-Help $_.Name -ErrorAction SilentlyContinue; Common = $commonParameters }
0 commit comments