Spaces:
Runtime error
Runtime error
| import pytest | |
| from fastapi.testclient import TestClient | |
| def test_ui_starts_in_the_given_endpoint(test_client: TestClient) -> None: | |
| response = test_client.get("/ui") | |
| assert response.status_code == 200 | |