aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/internal/global/init.go
blob: 7114432000f37f490819ceed4c0874d9fb459949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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() {
	Failer = failer.New()
	Suite = suite.New(Failer)
}