# backend/tests/conftest.py import pytest @pytest.fixture def app_settings(): """Provide test settings.""" from app.config import Settings return Settings( DB_HOST="localhost", DB_PORT=3306, DB_NAME="dak_c2s_test", DB_USER="test", DB_PASSWORD="test", JWT_SECRET_KEY="test-secret-key", )