summaryrefslogtreecommitdiff
path: root/app/app_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/app_test.go')
-rw-r--r--app/app_test.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/app/app_test.go b/app/app_test.go
index 8817a3c..f1cc28c 100644
--- a/app/app_test.go
+++ b/app/app_test.go
@@ -23,12 +23,5 @@ func TestApp(t *testing.T) {
assert.Equal(t, http.StatusOK, response.Code)
assert.Contains(t, response.Body.String(), "SparkleLab")
})
-
- t.Run("GET /health", func(t *testing.T) {
- response := httptest.NewRecorder()
-
- server.ServeHTTP(response, test.Request("GET", "/health"))
- assert.Equal(t, http.StatusOK, response.Code)
- })
})
}