fix(api): Implement missing OIDC callback endpoint

This commit is contained in:
Yunxiao Xu
2026-02-11 13:20:13 -08:00
parent 5ba3120f03
commit 371582dcd1
9 changed files with 282 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
from fastapi.testclient import TestClient
from ea_chatbot.api.main import app
client = TestClient(app)
def test_health_check():
response = client.get("/health")
assert response.status_code == 200
assert response.json() == {"status": "ok"}