From 855a8ae0d3752298d6ad00d1527491b0771cf1a5 Mon Sep 17 00:00:00 2001 From: Triona Doyle Date: Wed, 5 Jun 2024 11:34:08 +0100 Subject: [PATCH] Add back non-kuttl tests --- test/e2e/suite_test.go | 7 +++++++ test/nondefaulte2e/suite_test.go | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/test/e2e/suite_test.go b/test/e2e/suite_test.go index b6b239ebf..54ca586be 100644 --- a/test/e2e/suite_test.go +++ b/test/e2e/suite_test.go @@ -20,6 +20,7 @@ import ( "context" "os" "path/filepath" + "testing" "time" // Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.) @@ -87,6 +88,12 @@ const ( interval = time.Millisecond * 250 ) +func TestAPIs(t *testing.T) { + + RegisterFailHandler(Fail) + RunSpecs(t, "Controller Suite") +} + var _ = BeforeSuite(func() { logf.SetLogger(zap.New(zap.WriteTo(GinkgoWriter), zap.UseDevMode(true))) diff --git a/test/nondefaulte2e/suite_test.go b/test/nondefaulte2e/suite_test.go index de65fcfb0..a70f04b36 100644 --- a/test/nondefaulte2e/suite_test.go +++ b/test/nondefaulte2e/suite_test.go @@ -21,6 +21,7 @@ import ( "os" "path/filepath" "strings" + "testing" "time" // Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.) @@ -71,6 +72,11 @@ const ( interval = time.Millisecond * 250 ) +func TestAPIs(t *testing.T) { + RegisterFailHandler(Fail) + RunSpecs(t, "Controller Suite") +} + var _ = BeforeSuite(func() { logf.SetLogger(zap.New(zap.WriteTo(GinkgoWriter), zap.UseDevMode(true)))