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