mirror of
https://github.com/lnbits/lnbits.git
synced 2025-06-03 19:52:01 +02:00
9 lines
190 B
Python
9 lines
190 B
Python
import pytest
|
|
from tests.conftest import client
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_core_views_generic(client):
|
|
response = await client.get("/")
|
|
assert response.status_code == 200
|