Merged in feature/health (pull request #163)

Health Endpoint

* health
This commit is contained in:
Michael McGuinness
2025-06-09 23:30:06 +00:00
parent cfae1f9016
commit 76e4f5790f
18 changed files with 489 additions and 79 deletions
+5
View File
@@ -41,5 +41,10 @@ func TestQueryAPIAccessories(t *testing.T) {
assert.NotNil(t, resp)
assert.Equal(t, http.StatusOK, resp.StatusCode)
resp, err = http.Get(fmt.Sprintf("%s/health", c.API.URI))
require.NoError(t, err)
assert.NotNil(t, resp)
assert.Equal(t, http.StatusOK, resp.StatusCode)
test.PrintContainerLogs(t, c.API.Container)
}