lnbits/tests/conftest.py
2020-04-27 19:39:00 +02:00

12 lines
163 B
Python

import pytest
from lnbits import app
@pytest.fixture
def client():
app.config["TESTING"] = True
with app.test_client() as client:
yield client