mirror of
https://github.com/rancher/plugins.git
synced 2025-07-09 13:15:20 +00:00
This commit updates ginkgo to v2. Note that because ginkgo/v2 requires go1.18, it was updated as well. Signed-off-by: liornoy <lnoy@redhat.com> Co-authored-by: Sascha Grunert <sgrunert@redhat.com>
18 lines
248 B
Go
18 lines
248 B
Go
package global
|
|
|
|
import (
|
|
"github.com/onsi/ginkgo/v2/internal"
|
|
)
|
|
|
|
var Suite *internal.Suite
|
|
var Failer *internal.Failer
|
|
|
|
func init() {
|
|
InitializeGlobals()
|
|
}
|
|
|
|
func InitializeGlobals() {
|
|
Failer = internal.NewFailer()
|
|
Suite = internal.NewSuite()
|
|
}
|