Create e2e tests package

This commit is contained in:
Volodymyr Zotov
2025-08-15 13:27:25 -05:00
parent f6b267726d
commit 7d2596a4aa
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package e2e
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
// Run e2e tests using the Ginkgo runner.
func TestE2E(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "onepassword-operator e2e suite")
}