diff options
| author | mo khan <mo@mokhan.ca> | 2025-05-15 17:06:18 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-05-15 17:06:18 -0600 |
| commit | 1622cea8df335a605ed815c6753cdefe8d2147ad (patch) | |
| tree | 073f38f5834e433afd64038d7aa25266c47329df /app/app_test.go | |
| parent | c151c1a77d31c5e01885691b6df1ea7b0be0b0e5 (diff) | |
| parent | 76f0753f2114da1872f0ad286ddd7ebf45e73894 (diff) | |
Merge branch 'envoy-health-check' into 'main'
Allow envoy to handle health checks
See merge request gitlab-org/software-supply-chain-security/authorization/sparkled!8
Diffstat (limited to 'app/app_test.go')
| -rw-r--r-- | app/app_test.go | 7 |
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) - }) }) } |
