1package rescheduling
2
3import (
4	"flag"
5	"testing"
6
7	. "github.com/onsi/ginkgo"
8	. "github.com/onsi/gomega"
9)
10
11var integration = flag.Bool("integration", false, "run integration tests")
12var slow = flag.Bool("slow", false, "runs slower integration tests")
13
14func TestServerSideRestarts(t *testing.T) {
15	if !*integration {
16		t.Skip("skipping test in non-integration mode.")
17	}
18	RegisterFailHandler(Fail)
19	RunSpecs(t, "Server Side Restart Tests")
20}
21