Files
arcade/tests/conftest.py
2026-04-15 10:05:48 +00:00

10 lines
158 B
Python

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