mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-23 14:40:47 +01:00
13 lines
230 B
Python
13 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
|