mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-02 01:09:52 +00:00
* Commit of new etcd snapshot integration tests. * Updated integration github action to not run on doc changes. * Update Drone runner to only run unit tests Signed-off-by: dereknola <derek.nola@suse.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)
|
|
}
|