package tests import ( "net/http" "testing" "github.com/stretchr/testify/assert" ) func TestHealthCheck(t *testing.T) { test := NewTest(t) res, status, err := test.Fetch("GET", "/health-check", nil) assert.NoError(t, err) assert.Equal(t, http.StatusOK, status) assert.Equal(t, "OK", res["data"]) }