We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a3d0c3 commit 38c4253Copy full SHA for 38c4253
1 file changed
pwsh_module/command.tests.ps1
@@ -71,9 +71,14 @@ Describe "test bolt command syntax" {
71
}
72
73
It "has correct number of parameters" {
74
- ($command.Parameters.Values | Where-Object {
75
- $_.name -notin $common
76
- } | measure-object).Count | Should -Be 35
+ $customParams = $command.Parameters.Values | Where-Object {
+ $_.Name -notin $common
+ }
77
+
78
+ Write-Host "Custom parameters:"
79
+ $customParams | ForEach-Object { Write-Host " - $($_.Name)" }
80
81
+ ($customParams | Measure-Object).Count | Should -Be 35
82
83
84
0 commit comments