4 lines
114 B
Python
4 lines
114 B
Python
def test_health_smoke(client):
|
|
response = client.get("/api/v1/health")
|
|
assert response.status_code == 200
|