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 09240f0 commit 6699e51Copy full SHA for 6699e51
tests/test_lazy.py
@@ -45,8 +45,10 @@ async def test_lazy_reveal():
45
assert not app.query_one("#baz").display
46
47
# All children should be visible after a pause
48
- await pilot.pause(3 / 60)
49
await pilot.pause()
+ for n in range(3):
50
+ await pilot.pause(1 / 60)
51
+ await pilot.pause()
52
53
assert app.query_one("#foo").display
54
assert app.query_one("#bar").display
0 commit comments