14 lines
230 B
Python
14 lines
230 B
Python
import pytest
|
|
|
|
from lnbits.app import create_app
|
|
|
|
|
|
@pytest.fixture
|
|
@pytest.mark.asyncio
|
|
async def client():
|
|
app = create_app()
|
|
app.config["TESTING"] = True
|
|
|
|
async with app.test_client() as client:
|
|
yield client
|