Skip to content

Commit bfe038e

Browse files
E2e test
Signed-off-by: Vishesh Tanksale <vtanksale@nvidia.com>
1 parent 7668b04 commit bfe038e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/nim-operator_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ var _ = Describe("NIM Operator", Ordered, func() {
172172
}
173173
})
174174

175-
It("should go to READY state", func(ctx context.Context) {
175+
FIt("should go to READY state", func(ctx context.Context) {
176176
// Create a NIMCache object
177177
By("Creating a NIMCache object")
178178
cli, err := versioned.NewForConfig(clientConfig)
@@ -192,7 +192,7 @@ var _ = Describe("NIM Operator", Ordered, func() {
192192
Eventually(func() bool {
193193
nimCacheObject, _ := cli.AppsV1alpha1().NIMCaches(testNamespace.Name).Get(ctx, nimCache.Name, metav1.GetOptions{})
194194
return nimCacheObject.Status.State == v1alpha1.NimCacheStatusReady
195-
}, Timeout, 5*time.Second).Should(BeTrue())
195+
}, 10*time.Minute, 5*time.Second).Should(BeTrue())
196196

197197
// Create a NIMService object
198198
By("Creating a NIMService object")

0 commit comments

Comments
 (0)