You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
be-lcca/tests/e2e/test_healthcheck.py

9 lines
249 B
Python

import pytest
from httpx import AsyncClient
@pytest.mark.asyncio
async def test_healthcheck(client: AsyncClient):
response = await client.get("/healthcheck")
assert response.status_code == 200
assert response.json() == {"status": "ok"}