()
| 105 | |
| 106 | async def test_run_error() -> None: |
| 107 | async def run_error() -> str: |
| 108 | await asyncio.sleep(0.1) |
| 109 | 1 / 0 |
| 110 | return "Never" |
| 111 | |
| 112 | class ErrorApp(App): |
| 113 | pass |
nothing calls this directly
no test coverage detected
searching dependent graphs…