10 lines
179 B
Python
10 lines
179 B
Python
import pytest
|
|
from fastapi.testclient import TestClient
|
|
|
|
from clan_cli.webui.app import app
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def api() -> TestClient:
|
|
return TestClient(app)
|