From 52aadad2f666c627dfd5cc3bbf1cd18949743e33 Mon Sep 17 00:00:00 2001 From: Katie McLaughlin Date: Wed, 28 May 2025 13:52:01 +1000 Subject: [PATCH] fix: extend timeout waiting for job completion --- infra/test/integration/testhelper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/test/integration/testhelper.go b/infra/test/integration/testhelper.go index db7107fd..a2362e8d 100644 --- a/infra/test/integration/testhelper.go +++ b/infra/test/integration/testhelper.go @@ -107,7 +107,7 @@ func AssertExample(t *testing.T) { return false, nil } - utils.Poll(t, isJobFinished, 10, time.Second*10) + utils.Poll(t, isJobFinished, 10, time.Second*20) // The API must return a list that includes our flagship product assertResponseContains(t, assert, serviceURL+"/api/products/", flagshipProduct)