From 8e12b00ae8c2780d045177f87c842b6e8264316e Mon Sep 17 00:00:00 2001 From: Umputun Date: Fri, 19 Oct 2018 16:13:37 -0500 Subject: [PATCH] give more time to server start --- backend/app/main_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/main_test.go b/backend/app/main_test.go index 0ffe37a7..f6215c09 100644 --- a/backend/app/main_test.go +++ b/backend/app/main_test.go @@ -33,7 +33,7 @@ func TestMain(t *testing.T) { wg.Done() }() - time.Sleep(50 * time.Millisecond) // let server start + time.Sleep(200 * time.Millisecond) // let server start // send ping resp, err := http.Get("http://localhost:18202/api/v1/ping")