File size: 252 Bytes
a3ecd30 | 1 2 3 4 5 6 7 8 9 10 11 | from fastapi.testclient import TestClient
from app.main import app
def test_health_endpoint():
response = TestClient(app).get("/health")
assert response.status_code == 200
assert response.json() == {"status": "ok", "app": "SwarmAudit"}
|