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 79be779 commit 8a1a70aCopy full SHA for 8a1a70a
dsc/tests/dsc_resource_list.tests.ps1
@@ -67,7 +67,8 @@ Describe 'Tests for listing resources' {
67
$jp = $line | ConvertFrom-Json
68
if ($jp.activity) { # if line is a progress message
69
$jp.id | Should -Not -BeNullOrEmpty
70
- $jp.percentComplete | Should -BeIn (0..100)
+ $jp.totalItems | Should -Not -BeNullOrEmpty
71
+ $jp.completedItems | Should -Not -BeNullOrEmpty
72
$ProgressMessagesFound = $True
73
}
74
0 commit comments