mirror of
https://github.com/kubevela/kubevela.git
synced 2026-08-23 22:46:53 +00:00
* implemented trait attach, get application * implemented API for trait detach and fix trait detach issue * implemeted API add/sync/list capability center * implemented API capability add/remove/list * update test-cases according to new cli style * merge two ginkgo describe to one as in github environment ginkgo does NOT follow the order of describes * merge two ginkgo describe to one as in github environment ginkgo does NOT follow the order of describes
14 lines
201 B
Go
14 lines
201 B
Go
package e2e
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/onsi/ginkgo"
|
|
"github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestEnv(t *testing.T) {
|
|
gomega.RegisterFailHandler(ginkgo.Fail)
|
|
ginkgo.RunSpecs(t, "Capability Suite")
|
|
}
|