2025-04-21 09:28:40 +02:00

10 lines
166 B
Python

import pytest as pytest
from starlette.testclient import TestClient
from app.api import app
@pytest.fixture
def client() -> TestClient:
return TestClient(app)