"""Integration smoke test for the FastAPI app."""
from fastapi.testclient import TestClient
from sups_yolo.api.app import create_app
def test_index() -> None:
app = create_app({"database_path": ":memory:"})
client = TestClient(app)
response = client.get("/")
assert response.status_code == 200
assert "sups_yolo" in response.text