Files
tft/backend/tests/test_health.py
2026-07-23 00:21:10 +02:00

11 lines
232 B
Python

from fastapi.testclient import TestClient
from tft.api.app import app
def test_health():
client = TestClient(app)
resp = client.get("/health")
assert resp.status_code == 200
assert resp.json() == {"status": "ok"}