Files
kite/backend/tests/test_health.py
T
2026-05-22 08:53:28 +02:00

5 lines
136 B
Python

def test_health(client):
resp = client.get("/health")
assert resp.status_code == 200
assert resp.json() == {"status": "ok"}