10 lines
166 B
Python
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)
|