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 c1bca00 commit e29fabaCopy full SHA for e29faba
deploy/Invoke-SmokeTests.ps1
@@ -28,9 +28,10 @@ Describe 'New-PowerShellScriptModuleRepository' {
28
# Act.
29
New-PowerShellScriptModuleRepository -RepositoryDirectoryPath $repositoryDirectoryPath -ModuleName $moduleName -OrganizationName $organizationName -Verbose
30
31
- Write-Output "Module directory path: $repositoryDirectoryPath"
32
- Get-ChildItem -Path $repositoryDirectoryPath -Recurse |
+ Write-Verbose "Module directory path: $repositoryDirectoryPath" -Verbose
+ $paths = Get-ChildItem -Path $repositoryDirectoryPath -Recurse |
33
Select-Object -ExpandProperty FullName
34
+ Write-Verbose "Paths: $paths" -Verbose
35
36
# Assert.
37
$expectedModuleDirectoryPath | Should -Exist
0 commit comments