diff --git a/server/account_test.go b/server/account_test.go index fe79cba..1af33c1 100644 --- a/server/account_test.go +++ b/server/account_test.go @@ -2,6 +2,7 @@ package server import ( "encoding/json" + "fmt" "net/http" "net/http/httptest" "strings" @@ -22,7 +23,8 @@ func TestRegisterUser(t *testing.T) { //nolint:funlen t.Parallel() database, err := postgres.Connect("pgtx", "example") if err != nil { - t.Errorf("could not connect to db: %s", err) + fmt.Printf("could not connect to db: %s\n", err) + t.Skip() return }