From d521528d60afaa57ba6f5480ff78ff5a38445efe Mon Sep 17 00:00:00 2001 From: Michael Li Date: Thu, 5 Mar 2026 16:04:51 -0500 Subject: [PATCH] test(e2e): Increase wait time for containers to be ready --- testing/internal/e2e/tests/database/migration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/internal/e2e/tests/database/migration_test.go b/testing/internal/e2e/tests/database/migration_test.go index 606d809cac..27ffdf550c 100644 --- a/testing/internal/e2e/tests/database/migration_test.go +++ b/testing/internal/e2e/tests/database/migration_test.go @@ -79,7 +79,7 @@ func setupEnvironment(t testing.TB, c *config, boundaryRepo, boundaryTag string) require.NoError(t, err) err = pool.Client.Ping() require.NoError(t, err) - pool.MaxWait = 10 * time.Second + pool.MaxWait = 30 * time.Second // Set up docker network network, err := pool.CreateNetwork(t.Name())