mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-26 18:27:53 +00:00
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo) from 1.13.0 to 1.14.0. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v1.13.0...v1.14.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
22 lines
342 B
Go
22 lines
342 B
Go
package global
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/onsi/ginkgo/internal/failer"
|
|
"github.com/onsi/ginkgo/internal/suite"
|
|
)
|
|
|
|
const DefaultTimeout = time.Duration(1 * time.Second)
|
|
|
|
var Suite *suite.Suite
|
|
var Failer *failer.Failer
|
|
|
|
func init() {
|
|
InitializeGlobals()
|
|
}
|
|
|
|
func InitializeGlobals() {
|
|
Failer = failer.New()
|
|
Suite = suite.New(Failer)
|
|
}
|