From 6e86b36811c3a246c00791cee752a4c71abfa7b0 Mon Sep 17 00:00:00 2001 From: Karan Gathani Date: Thu, 21 Mar 2024 11:20:49 -0700 Subject: [PATCH] See error --- tests/playwright/shiny/session/flush/test_on_flush.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/playwright/shiny/session/flush/test_on_flush.py b/tests/playwright/shiny/session/flush/test_on_flush.py index b59feced9..32faedb21 100644 --- a/tests/playwright/shiny/session/flush/test_on_flush.py +++ b/tests/playwright/shiny/session/flush/test_on_flush.py @@ -25,8 +25,9 @@ def test_output_image_kitchen(page: Page, local_app: ShinyAppProc) -> None: local_app.close() # Wait up to 3 seconds for the app to close and print the logs. (Should be ~ instant) - local_app.stdout.wait_for(lambda x: "test4" in x, 3) + local_app.stdout.wait_for(lambda x: "test4" in x, 10) stdout = str(local_app.stdout) + print(stdout) out_indexes = [ stdout.index("session ended - sync - test1"), stdout.index("session ended - async - test2"),