File size: 210 Bytes
a63cedf
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
def test_health_check(client):
    response = client.get("/api/health")
    assert response.status_code == 200
    data = response.json()
    assert data["status"] == "OK"
    assert "yolo_available" in data