Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions e2eTests/scenarios/BCApps/runtest.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,12 @@ if (-not $run) {
}
WaitWorkflow -repository $repository -runid $run.id

# There should be only 1 app rebuilt
# There should be at least 1 app and 1 test app rebuilt
Test-ArtifactsFromRun -runid $run.id -folder '.prartifacts' -repoVersion '*.*' -appVersion '*.*'
$appCount = @(Get-ChildItem -Path '.prartifacts/*-Apps-*/*.app' -Recurse).Count
$appCount | Should -Be 1
$testAppCount = @(Get-ChildItem -Path '.prartifacts/*-TestApps-*/*.app' -Recurse).Count
$appCount | Should -BeGreaterThan 0
$testAppCount | Should -BeGreaterThan 0

Pop-Location
RemoveRepository -repository $repository -path $repoPath
Loading