lnbits/tests/conftest.py

12 lines
163 B
Python
Raw Normal View History

2020-04-27 17:01:53 +00:00
import pytest
from lnbits import app
@pytest.fixture
def client():
app.config["TESTING"] = True
with app.test_client() as client:
yield client