mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-05 11:11:28 +00:00
* Support disable installation of builtin capabilities Added vela core bootstrap flag `--enable-caps` to support no installation for builtin capabiliteis Feature #658 * revert flag to "disable-cpas" Co-authored-by: Jianbo Sun <wonderflow.sun@gmail.com> * Address comments Co-authored-by: Jianbo Sun <wonderflow.sun@gmail.com>
14 lines
200 B
Go
14 lines
200 B
Go
package utils
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/onsi/ginkgo"
|
|
"github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestUtils(t *testing.T) {
|
|
gomega.RegisterFailHandler(ginkgo.Fail)
|
|
ginkgo.RunSpecs(t, "utils Suite")
|
|
}
|