From e1de10d21a474df8d7e36b836e03a7e63c63c024 Mon Sep 17 00:00:00 2001 From: Darren Burns Date: Tue, 17 Jan 2023 14:26:16 +0000 Subject: [PATCH] Pause after input test --- tests/test_input.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_input.py b/tests/test_input.py index bbdb66e86..321a12d1e 100644 --- a/tests/test_input.py +++ b/tests/test_input.py @@ -68,6 +68,7 @@ async def test_input_value_visible_if_mounted_later_and_focused(): app = MyApp() async with app.run_test() as pilot: await pilot.press("a") + await pilot.pause() console = Console(width=5) with console.capture() as capture: console.print(app.query_one(Input).render())