File tree Expand file tree Collapse file tree 1 file changed +6
-10
lines changed
scripts/tests/Module/PSModule Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -27,18 +27,14 @@ Describe 'PSModule - Module tests' {
2727
2828 Context ' Module Manifest' {
2929 It ' Module Manifest exists' {
30- LogGroup ' Module manifest' {
31- $result = Test-Path - Path $moduleManifestPath
32- $result | Should - Be $true
33- Write-Host " $ ( $result | Format-List | Out-String ) "
34- }
30+ $result = Test-Path - Path $moduleManifestPath
31+ $result | Should - Be $true
32+ Write-Host " $ ( $result | Format-List | Out-String ) "
3533 }
3634 It ' Module Manifest is valid' {
37- LogGroup ' Validating Module Manifest' {
38- $result = Test-ModuleManifest - Path $moduleManifestPath
39- $result | Should -Not - Be $null
40- Write-Host " $ ( $result | Format-List | Out-String ) "
41- }
35+ $result = Test-ModuleManifest - Path $moduleManifestPath
36+ $result | Should -Not - Be $null
37+ Write-Host " $ ( $result | Format-List | Out-String ) "
4238 }
4339 # It 'has a valid license URL' {}
4440 # It 'has a valid project URL' {}
You can’t perform that action at this time.
0 commit comments