summaryrefslogtreecommitdiff
path: root/app/app_test.go
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-15 16:16:39 -0600
committermo khan <mo@mokhan.ca>2025-05-15 16:16:39 -0600
commit76f0753f2114da1872f0ad286ddd7ebf45e73894 (patch)
tree073f38f5834e433afd64038d7aa25266c47329df /app/app_test.go
parentc151c1a77d31c5e01885691b6df1ea7b0be0b0e5 (diff)
chore: allow envoy to handle health checks
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)
- })
})
}