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 7851978 commit 0df987fCopy full SHA for 0df987f
tests/playwright/shiny/bookmark/chat/client_state/test_bookmark_chat.py
@@ -1,12 +1,15 @@
1
import re
2
3
+import pytest
4
from playwright.sync_api import Page
5
6
from shiny.playwright.controller import Chat
7
from shiny.run import ShinyAppProc
8
9
-def test_bookmark_chatlas(page: Page, local_app: ShinyAppProc):
10
+# Up to 5 retries for intermittent WebKit timing issues
11
+@pytest.mark.flaky(reruns=5, reruns_delay=1)
12
+def test_bookmark_chat(page: Page, local_app: ShinyAppProc):
13
14
page.goto(local_app.url)
15
0 commit comments