Files
kubesphere/test/e2e/e2e.go
hongming 39eab5ee5c update dependencies (#6267)
Signed-off-by: hongming <coder.scala@gmail.com>
(cherry picked from commit cfebd96a1f)
2025-03-11 14:19:32 +08:00

19 lines
471 B
Go

package e2e
import (
"testing"
"github.com/onsi/ginkgo/v2"
"github.com/onsi/gomega"
"kubesphere.io/kubesphere/test/e2e/framework/ginkgowrapper"
)
// RunE2ETests checks configuration parameters (specified through flags) and then runs
// E2E tests using the Ginkgo runner.
// This function is called on each Ginkgo node in parallel mode.
func RunE2ETests(t *testing.T) {
gomega.RegisterFailHandler(ginkgowrapper.Fail)
ginkgo.RunSpecs(t, "KubeSphere e2e suite")
}