lollms-webui/test/test_app.py

16 lines
280 B
Python

import pytest
from app import app
@pytest.fixture
def client():
with app.test_client() as client:
yield client
def test_homepage(client):
response = client.get("/")
assert response.status_code == 200
assert b"Welcome to my Flask app" in response.data