lnbits/tests/conftest.py
2020-09-17 22:41:30 -03:00

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