mirror of
https://github.com/kairos-io/kairos-agent.git
synced 2025-06-21 13:47:13 +00:00
14 lines
198 B
Go
14 lines
198 B
Go
|
package main_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/onsi/ginkgo/v2"
|
||
|
. "github.com/onsi/gomega"
|
||
|
)
|
||
|
|
||
|
func TestInstaller(t *testing.T) {
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "Installer Suite")
|
||
|
}
|