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