Skip to content

Commit

Permalink
Test commit
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Squizzato <[email protected]>
  • Loading branch information
squizzi committed Oct 18, 2024
1 parent 9f9ff25 commit 2aae48e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/e2e/controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
package e2e

import (
"fmt"

. "github.com/onsi/ginkgo/v2"
)

Expand All @@ -25,5 +27,7 @@ var _ = Describe("Controller", Label("controller"), Ordered, func() {
// atleast smoke test the controller outside of the larger provider e2e
// tests. When the controller actually has more specific tests this should
// be removed.
It("dummy It so that BeforeSuite/AfterSuite are ran", func() {})
It("dummy It so that BeforeSuite/AfterSuite are ran", func() {
_, _ = fmt.Printf("Running dummy test for controller")
})
})

0 comments on commit 2aae48e

Please sign in to comment.