mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
12 lines
176 B
Go
12 lines
176 B
Go
package commands
|
|
|
|
import "testing"
|
|
|
|
func TestAreAliasesCommandsAvailable(
|
|
t *testing.T,
|
|
) {
|
|
if !IsNewAliasesCommandAvailable() {
|
|
t.Skip("Aliases tools not available")
|
|
}
|
|
}
|