We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82a78f9 commit 83924b4Copy full SHA for 83924b4
pkg/envtest/envtest_test.go
@@ -40,6 +40,8 @@ var _ = Describe("Test", func() {
40
var validDirectory = filepath.Join(".", "testdata")
41
var invalidDirectory = "fake"
42
43
+ var teardownTimeoutSeconds float64 = 10
44
+
45
// Initialize the client
46
BeforeEach(func(done Done) {
47
crds = []runtime.Object{}
@@ -76,7 +78,7 @@ var _ = Describe("Test", func() {
76
78
}, 1*time.Second).Should(BeTrue())
77
79
}
80
close(done)
- })
81
+ }, teardownTimeoutSeconds)
82
83
Describe("InstallCRDs", func() {
84
It("should install the CRDs into the cluster using directory", func(done Done) {
0 commit comments