voicemeeter-api-powershell/test/runall.ps1
onyx-and-iris e1867d0731 Initial commit
Initial commit

Added readme
2021-04-28 17:38:36 +01:00

22 lines
278 B
PowerShell

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