Files
ImportExcel/DoTests.ps1
2018-05-27 13:04:37 -04:00

8 lines
217 B
PowerShell

# Get-Module -ListAvailable pester | Out-Host
# return
if ((Get-Module -ListAvailable pester) -eq $null) {
Install-Module -Name Pester -Repository PSGallery -Force
}
Invoke-Pester -Script $PSScriptRoot\UnitTests