mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 13:20:47 +00:00
7a7740a8bc
Add ignore module root and module manifest
17 lines
251 B
PowerShell
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()
|
|
}
|