11 lines
200 B
Python
11 lines
200 B
Python
import pytest
|
|
from fastapi.testclient import TestClient
|
|
|
|
from clan_cli.webui.app import app
|
|
|
|
|
|
# TODO: Why stateful
|
|
@pytest.fixture(scope="session")
|
|
def api() -> TestClient:
|
|
return TestClient(app)
|