Skip to content

Commit 3d03a07

Browse files
committed
Write debug all the files
1 parent e4f160b commit 3d03a07

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/build.tests.ps1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,12 @@ Describe 'Build' {
7878
$global:PSBuildCompile = $false
7979
./build.ps1 -Task Build
8080
} -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)
8184
Write-Debug "TestModule output path: $script:testModuleOutputPath"
8285
$items = Get-ChildItem -Path $script:testModuleOutputPath -Recurse -File
83-
Write-Debug ($items | Format-Table FullName)
86+
Write-Debug ($items | Format-Table FullName | Out-String)
8487
}
8588

8689
AfterAll {

0 commit comments

Comments
 (0)