mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-24 02:03:18 +00:00
20 lines
302 B
Go
20 lines
302 B
Go
package e2e
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/oam-dev/kubevela/e2e"
|
|
|
|
"github.com/onsi/ginkgo"
|
|
"github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = ginkgo.BeforeSuite(func() {
|
|
e2e.BeforeSuit()
|
|
}, 30)
|
|
|
|
func TestApplication(t *testing.T) {
|
|
gomega.RegisterFailHandler(ginkgo.Fail)
|
|
ginkgo.RunSpecs(t, "Setup Suite")
|
|
}
|