Update higher.Tests.ps1

add tests for showvbanchat and lock to higher tests.
This commit is contained in:
onyx-and-iris 2022-01-09 14:24:23 +00:00
parent 29c53da38c
commit 4ac81bcc62

View File

@ -900,4 +900,26 @@ Describe -Tag 'higher', -TestName 'All Alias Tests' {
} }
} }
} }
Describe 'Special Commands Test' {
Context 'command.showvbanchat' {
It 'Should set showvbanchat to 1' {
$vmr.command.showvbanchat = $true
}
It 'Should set showvbanchat to 0' {
$vmr.command.showvbanchat = $false
}
}
Context 'command.lock' {
It 'Should set command.lock to 1' {
$vmr.command.lock = $true
}
It 'Should set command.lock to 0' {
$vmr.command.lock = $false
}
}
}
} }