mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-20 10:39:59 +01:00
13 lines
209 B
Python
13 lines
209 B
Python
import pytest
|
|
|
|
from lnbits.app import create_app
|
|
|
|
|
|
@pytest.fixture
|
|
async def client():
|
|
app = create_app()
|
|
app.config["TESTING"] = True
|
|
|
|
async with app.test_client() as client:
|
|
yield client
|