(core_lifecycle_td: AstrBotCoreLifecycle)
| 79 | |
| 80 | @pytest.fixture(scope="module") |
| 81 | def app(core_lifecycle_td: AstrBotCoreLifecycle): |
| 82 | shutdown_event = asyncio.Event() |
| 83 | server = AstrBotDashboard(core_lifecycle_td, core_lifecycle_td.db, shutdown_event) |
| 84 | return server.app |
| 85 | |
| 86 | |
| 87 | def _resolve_dashboard_password(core_lifecycle_td: AstrBotCoreLifecycle) -> str: |
nothing calls this directly
no test coverage detected