fix: type the health test mode, pace cards with the stream, and size the results panel
Some checks are pending
ci / backend (push) Waiting to run
ci / frontend (push) Waiting to run

This commit is contained in:
Justin Visser 2026-08-11 10:15:20 +02:00
parent fa356ba5c5
commit cdace7d170
7 changed files with 41 additions and 15 deletions

View file

@ -5,7 +5,7 @@ from unittest.mock import AsyncMock, Mock
import pytest
from fastapi.testclient import TestClient
from app.config import Settings
from app.config import AppMode, Settings
from app.main import create_app
@ -23,7 +23,7 @@ def test_anthropic_client_uses_configured_timeout(monkeypatch: pytest.MonkeyPatc
monkeypatch.setattr("app.main.AsyncAnthropic", constructor)
live_settings = Settings(
app_mode="live",
app_mode=AppMode.LIVE,
spotify_client_id="client-id",
anthropic_api_key="api-key",
llm_timeout_seconds=42.0,