From 438fa525dab3196cffeb1cb0dc6617fe364ed61a Mon Sep 17 00:00:00 2001 From: pblivingston <71585805+pblivingston@users.noreply.github.com> Date: Thu, 27 Nov 2025 13:14:11 -0500 Subject: [PATCH] Update higher.Tests.ps1 pester tests pass for all kinds --- tests/higher.Tests.ps1 | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/tests/higher.Tests.ps1 b/tests/higher.Tests.ps1 index 68af850..a7a1b03 100644 --- a/tests/higher.Tests.ps1 +++ b/tests/higher.Tests.ps1 @@ -136,6 +136,32 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' { $vmr.command.lock = $value } } + + Context 'Fx' -Skip:$ifNotPotato { + Context 'Delay' { + It 'Should set and get Fx.delay.on' { + $vmr.fx.delay.on = $value + $vmr.fx.delay.on | Should -Be $expected + } + + It 'Should set and get Fx.delay.ab' { + $vmr.fx.delay.ab = $value + $vmr.fx.delay.ab | Should -Be $expected + } + } + + Context 'Reverb' { + It 'Should set and get Fx.reverb.on' { + $vmr.fx.reverb.on = $value + $vmr.fx.reverb.on | Should -Be $expected + } + + It 'Should set and get Fx.reverb.ab' { + $vmr.fx.reverb.ab = $value + $vmr.fx.reverb.ab | Should -Be $expected + } + } + } Context 'Patch' { It 'Should set and get Patch.insert[$insert]' -Skip:$ifBasic {