Skip to content

Commit

Permalink
test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
freddydk committed Nov 26, 2023
1 parent d33443e commit 83c3c7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/BuildReferenceDocumentation.Action.Test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ Describe "BuildReferenceDocumentation Action Tests" {
}
}

$allApps = CalculateProjectsAndApps -tempFolder 'c:\temp' -projects @('P1','P2') -excludeProjects @('P3')
$allApps = CalculateProjectsAndApps -tempFolder (Get-Location).Path -projects @('P1','P2') -excludeProjects @('P3')
$allApps.Count | Should -Be 2
$allApps[0].Keys.Count | Should -be 1
$allApps[0].ContainsKey('dummy') | Should -be $true
$allApps[0]."dummy".Count | Should -be 3

$allApps = CalculateProjectsAndApps -tempFolder 'c:\temp' -projects @('*') -excludeProjects @('P3') -useProjectsAsFolders
$allApps = CalculateProjectsAndApps -tempFolder (Get-Location).Path -projects @('*') -excludeProjects @('P3') -useProjectsAsFolders
$allApps.Count | Should -Be 2
$allApps[0].Keys.Count | Should -be 3
$allApps[0].ContainsKey('dummy') | Should -be $false
Expand Down

0 comments on commit 83c3c7c

Please sign in to comment.