mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-26 05:03:09 +00:00
- update all the import statements - run hack/pin-dependency.sh to change pinned dependency versions - run hack/update-vendor.sh to update go.mod files and the vendor directory - update the method signatures for custom reporters Signed-off-by: Dave Chen <dave.chen@arm.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()
|
|
}
|