mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-23 14:40:47 +01:00
7 lines
153 B
Python
7 lines
153 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_homepage(client):
|
|
r = await client.get("/")
|
|
assert b"Add a new wallet" in await r.get_data()
|