| 625 | raise SkipAction() |
| 626 | |
| 627 | class SkipApp(App): |
| 628 | def compose(self) -> ComposeResult: |
| 629 | yield Handle(NoHandle()) |
| 630 | |
| 631 | def on_mount(self) -> None: |
| 632 | self.query_one(NoHandle).focus() |
| 633 | |
| 634 | async with SkipApp().run_test() as pilot: |
| 635 | # Check the NoHandle widget has focus |
no outgoing calls
searching dependent graphs…