goc/tests/e2e/e2e_suite_test.go
2021-07-22 19:57:56 +08:00

14 lines
186 B
Go

package e2e
import (
"testing"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestGoc(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Goc e2e Test Suite")
}