Add control UI
Some checks failed
CI / test (push) Failing after 5s

This commit is contained in:
2026-04-05 19:37:07 +02:00
parent 1b0b9cfdef
commit 5fa516f7e7
5 changed files with 378 additions and 0 deletions

12
tests/test_ui.py Normal file
View File

@@ -0,0 +1,12 @@
from fastapi.testclient import TestClient
from server.main import app
test_client = TestClient(app)
def test_ui_root_serves_index():
response = test_client.get("/ui/")
assert response.status_code == 200
assert "Clickthrough Control" in response.text