automation-tests/common/pkg/config/config_suite_test.go

18 lines
229 B
Go

package config
import (
"testing"
. "github.com/onsi/ginkgo/v2"
"github.com/onsi/gomega"
)
func TestConfig(t *testing.T) {
gomega.RegisterFailHandler(Fail)
RunSpecs(t, "Config Suite")
}
const (
invalidPath = "/wrong"
)