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 ec26fe1 commit 6dc0c9bCopy full SHA for 6dc0c9b
tests/playwright/examples/example_apps.py
@@ -15,9 +15,6 @@
15
reruns = 1 if is_interactive else 3
16
reruns_delay = 0
17
18
-SHINY_INIT_TIMEOUT = 30_000
19
-ERROR_ELEMENT_TIMEOUT = 1_000
20
-
21
22
def get_apps(path: str) -> typing.List[str]:
23
full_path = pyshiny_root / path
@@ -267,4 +264,4 @@ def on_console_msg(msg: ConsoleMessage) -> None:
267
264
if ex_app_path not in app_allow_output_error:
268
265
# Ensure there are no output errors present
269
266
error_locator = page.locator(".shiny-output-error")
270
- expect(error_locator).to_have_count(0, timeout=ERROR_ELEMENT_TIMEOUT)
+ expect(error_locator).to_have_count(0)
0 commit comments