voicemeeter-api-powershell/test/runall.ps1
onyx-and-iris 7a7740a8bc added gitignore
Add ignore module root and module manifest
2021-04-30 16:31:01 +01:00

17 lines
251 B
PowerShell

Param([String]$tag, [Int]$num=1)
try
{
. ..\lib\voicemeeter.ps1
$vmr = [Remote]::new('potato')
1..$num | ForEach-Object {
Write-Host "Running test $_ of $num"
Invoke-Pester -Tag $tag
}
}
finally
{
$vmr.Logout()
}