mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-12 04:50:39 +00:00
14 lines
299 B
PowerShell
14 lines
299 B
PowerShell
$ModuleManifestName = 'ImageHelpers.psd1'
|
|
$ModuleManifestPath = "$PSScriptRoot\..\$ModuleManifestName"
|
|
|
|
|
|
|
|
Describe 'Module Manifest Tests' {
|
|
It 'Passes Test-ModuleManifest' {
|
|
Test-ModuleManifest -Path $ModuleManifestPath | Should Not BeNullOrEmpty
|
|
$? | Should Be $true
|
|
}
|
|
}
|
|
|
|
|