Skip to content

Commit 59b1f13

Browse files
authored
Skip flaky playwright tests (#1336)
1 parent 94d84c3 commit 59b1f13

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

tests/playwright/shiny/deprecated/output_transformer/test_output_transformer_example.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
import pytest
12
from conftest import ShinyAppProc
23
from controls import OutputTextVerbatim
34
from playwright.sync_api import Page
45

56

7+
@pytest.mark.skip(reason="Flaky test. Fix before renabling")
68
def test_output_image_kitchen(page: Page, local_app: ShinyAppProc) -> None:
79
page.goto(local_app.url)
810

tests/playwright/shiny/server/output_transformer/test_output_transformer_async.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
import pytest
12
from conftest import ShinyAppProc
23
from controls import OutputTextVerbatim
34
from playwright.sync_api import Page
45

56

7+
@pytest.mark.skip(reason="Flaky test. please fix before enabling")
68
def test_output_transformer(page: Page, local_app: ShinyAppProc) -> None:
79
page.goto(local_app.url)
810

0 commit comments

Comments
 (0)