mirror of
https://github.com/lnbits/lnbits.git
synced 2026-08-18 13:18:00 +02: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()
|