mirror of
https://github.com/lnbits/lnbits.git
synced 2025-05-05 09:10:17 +02:00
7 lines
132 B
Python
7 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()
|