mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
8 lines
217 B
PowerShell
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 |