mirror of
https://github.com/containers/podman.git
synced 2025-12-14 11:00:10 +08: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>
23 lines
342 B
Go
23 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)
|
|
}
|