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 0641b3e commit 70b9be4Copy full SHA for 70b9be4
1 file changed
tests/playwright/shiny/components/table/test_table.py
@@ -9,7 +9,9 @@
9
def test_table_data_support(page: Page, local_app: ShinyAppProc) -> None:
10
page.goto(local_app.url)
11
12
- controller.OutputTable(page, "nw_table").expect_nrow(2)
+ # The first expectation after page load absorbs the initial render flush,
13
+ # which can exceed the default 5s timeout on a loaded CI runner.
14
+ controller.OutputTable(page, "nw_table").expect_nrow(2, timeout=30 * 1000)
15
controller.OutputCode(page, "nw_df_type").expect_value(re.compile("narwhals"))
16
17
controller.OutputTable(page, "pd_table").expect_nrow(2)
0 commit comments