Initially all the visible nodes should have had a render call.
()
| 30 | |
| 31 | |
| 32 | async def test_initial_state() -> None: |
| 33 | """Initially all the visible nodes should have had a render call.""" |
| 34 | app = RefreshApp() |
| 35 | async with app.run_test(): |
| 36 | assert app.query_one(HistoryTree).render_hits == {(0,0), (1,0), (2,0)} |
| 37 | |
| 38 | |
| 39 | async def test_root_refresh() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…