"""Basic smoke test to ensure backend can start.""" def test_backend_imports(): """Test that backend modules can be imported without errors.""" from swingmusic.app_builder import build # Just test that we can build the app app = build() assert app is not None