Skip to content

Commit a357b6a

Browse files
🩹 [Patch]: Remove unnecessary LogGroup wrappers in module manifest tests
1 parent c207858 commit a357b6a

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

scripts/tests/Module/PSModule/PSModule.Tests.ps1

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff 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' {}

0 commit comments

Comments
 (0)