Files
bytedance--deer-flow/backend/tests/test_scheduled_task_lifecycle.py
2026-07-13 11:59:58 +08:00

8 lines
211 B
Python

from app.gateway.app import create_app
def test_gateway_app_includes_scheduled_task_router():
app = create_app()
paths = {route.path for route in app.routes}
assert "/api/scheduled-tasks" in paths