extend the wait time for the server to start in tests
Some checks failed
Run Integration Tests / test (push) Failing after 37s

This commit is contained in:
partisan 2025-01-08 01:16:32 +01:00
parent dfb8c35bc6
commit 851b93bed5

View file

@ -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")
}