lnbits/tests/core/test_views.py
2020-09-17 22:41:30 -03:00

8 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()