From 851b93bed51be46cabd9d1f56ba81fc16f18915b Mon Sep 17 00:00:00 2001 From: partisan Date: Wed, 8 Jan 2025 01:16:32 +0100 Subject: [PATCH] extend the wait time for the server to start in tests --- tests/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_test.go b/tests/integration_test.go index be557d5..f462e30 100644 --- a/tests/integration_test.go +++ b/tests/integration_test.go @@ -108,7 +108,7 @@ func TestApplication(t *testing.T) { }() // Wait for the server to start - if !waitForServer("http://localhost:5000", 15*time.Second) { + if !waitForServer("http://localhost:5000", 600*time.Second) { t.Fatalf("Server did not start within the expected time") }