| 393 | """Test that the pointer shape updates.""" |
| 394 | |
| 395 | class PointerApp(App): |
| 396 | def compose(self) -> ComposeResult: |
| 397 | yield Static("Hello") |
| 398 | yield Button("Click me") |
| 399 | |
| 400 | app = PointerApp() |
| 401 | async with app.run_test() as pilot: |
no outgoing calls
searching dependent graphs…