quivr/backend/tests/test_misc.py
Stan Girard ee864e6441
test(added): misc prompt onboarding (#1622)
Added tests for:

- Prompt
- Misc
- Onboarding
2023-11-13 19:02:10 +01:00

11 lines
300 B
Python

def test_heatlhz(client):
response = client.get("/healthz")
assert response.status_code == 200
assert response.json() == {"status": "ok"}
def test_heatlhz_home(client):
response = client.get("/")
assert response.status_code == 200
assert response.json() == {"status": "OK"}