osbuilder/tests/e2e/e2e_suite_test.go

14 lines
206 B
Go
Raw Normal View History

2022-09-03 12:48:48 +00:00
package e2e_test
import (
2022-09-10 22:45:28 +00:00
"testing"
2022-09-03 12:48:48 +00:00
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
2022-09-10 22:45:28 +00:00
func TestE2e(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "kairos-operator e2e test Suite")
2022-09-10 22:45:28 +00:00
}