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 e4f160b commit 3d03a07Copy full SHA for 3d03a07
1 file changed
tests/build.tests.ps1
@@ -78,9 +78,12 @@ Describe 'Build' {
78
$global:PSBuildCompile = $false
79
./build.ps1 -Task Build
80
} -WorkingDirectory $script:testModuleSource | Wait-Job
81
+ Write-Debug "TestModule output path: $script:testModuleSource"
82
+ $items = Get-ChildItem -Path $script:testModuleSource -Recurse -File
83
+ Write-Debug ($items | Format-Table FullName | Out-String)
84
Write-Debug "TestModule output path: $script:testModuleOutputPath"
85
$items = Get-ChildItem -Path $script:testModuleOutputPath -Recurse -File
- Write-Debug ($items | Format-Table FullName)
86
87
}
88
89
AfterAll {
0 commit comments