We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec7fa8 commit ad63a57Copy full SHA for ad63a57
tests/test_modal.py
@@ -91,10 +91,14 @@ async def test_modal_pop_screen():
91
# Pause to ensure the footer is fully composed to avoid flakiness in CI
92
await pilot.pause()
93
await app.wait_for_refresh()
94
+ print(1, app.screen)
95
# Check clicking the footer brings up the quit screen
96
assert await pilot.click(offset=(1, app.size.height - 1))
97
+ print(2, app.screen)
98
- await pilot.pause(1 / 10)
99
+ print(3, app.screen)
100
+ await pilot.pause(1)
101
+ print(4, app.screen)
102
assert isinstance(app.screen, QuitScreen)
103
# Check activating the quit button exits the app
104
await pilot.press("enter")
0 commit comments