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 85b60dd commit 4dd459aCopy full SHA for 4dd459a
e2eTests/scenarios/BCApps/runtest.ps1
@@ -125,10 +125,12 @@ if (-not $run) {
125
}
126
WaitWorkflow -repository $repository -runid $run.id
127
128
-# There should be only 1 app rebuilt
+# There should be at least 1 app and 1 test app rebuilt
129
Test-ArtifactsFromRun -runid $run.id -folder '.prartifacts' -repoVersion '*.*' -appVersion '*.*'
130
$appCount = @(Get-ChildItem -Path '.prartifacts/*-Apps-*/*.app' -Recurse).Count
131
-$appCount | Should -Be 1
+$testAppCount = @(Get-ChildItem -Path '.prartifacts/*-TestApps-*/*.app' -Recurse).Count
132
+$appCount | Should -BeGreaterThan 0
133
+$testAppCount | Should -BeGreaterThan 0
134
135
Pop-Location
136
RemoveRepository -repository $repository -path $repoPath
0 commit comments