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 6b40cab commit d317037Copy full SHA for d317037
tests/QA/module.tests.ps1
@@ -229,7 +229,11 @@ Describe 'Help for module' -Tags 'helpQuality' {
229
}
230
231
Describe "datatypes for functions" -Tag "ParameterTypes" {
232
- $tests = $allModuleFunctions | ForEach-Object {
+ $tests = $allModuleFunctions | Where-Object -FilterScript {
233
+ $_.Name -notin (
234
+ 'Get-FabricLongRunningOperation'
235
+ )
236
+ } | ForEach-Object {
237
[PSCustomObject]@{
238
FunctionName = $_.Name
239
Parameters = @(
0 commit comments