From e1e3342b3db03a0eadfb917fae80d74439a23517 Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Tue, 22 Feb 2022 11:46:15 -0800 Subject: [PATCH] Increase a test timeout to account for slower test on EKS in CI The test takes longer on EKS because it has to wait about 2 minutes for the EKS load balancer to be ready during the test. --- test/integration/e2e_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/e2e_test.go b/test/integration/e2e_test.go index ddb423df..e9dc031c 100644 --- a/test/integration/e2e_test.go +++ b/test/integration/e2e_test.go @@ -109,7 +109,7 @@ func TestE2EFullIntegration_Browser(t *testing.T) { // nolint:gocyclo // Add an OIDC upstream IDP and try using it to authenticate during kubectl commands. t.Run("with Supervisor OIDC upstream IDP and automatic flow", func(t *testing.T) { - testCtx, cancel := context.WithTimeout(ctx, 2*time.Minute) + testCtx, cancel := context.WithTimeout(ctx, 5*time.Minute) t.Cleanup(cancel) // Start a fresh browser driver because we don't want to share cookies between the various tests in this file.