automation-tests/common/pkg/machine/machine_suite_test.go

14 lines
196 B
Go

package machine
import (
"testing"
. "github.com/onsi/ginkgo/v2"
"github.com/onsi/gomega"
)
func TestConfig(t *testing.T) {
gomega.RegisterFailHandler(Fail)
RunSpecs(t, "Machine Suite")
}