Files
s2f/backend/tests/test_health.py
T
2026-07-06 22:03:22 +08:00

12 lines
258 B
Python

from fastapi.testclient import TestClient
from app.main import app
def test_health_check() -> None:
client = TestClient(app)
response = client.get("/api/health")
assert response.status_code == 200
assert response.json()["status"] == "ok"