Skip to content

Commit

Permalink
See error
Browse files Browse the repository at this point in the history
  • Loading branch information
karangattu committed Mar 21, 2024
1 parent 2f75a90 commit 6e86b36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/playwright/shiny/session/flush/test_on_flush.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit 6e86b36

Please sign in to comment.