Skip to content

Commit 201c721

Browse files
test: unflake tests (microsoft#770)
1 parent 202d688 commit 201c721

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

tests/async/test_page.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
import re
1818

1919
import pytest
20-
from flaky import flaky
2120

2221
from playwright.async_api import Error, TimeoutError
2322

@@ -764,7 +763,6 @@ async def test_select_option_should_select_only_first_option(page, server):
764763
assert await page.evaluate("result.onChange") == ["blue"]
765764

766765

767-
@flaky # TODO: https://github.com/microsoft/playwright/issues/6725
768766
async def test_select_option_should_not_throw_when_select_causes_navigation(
769767
page, server
770768
):

tests/async/test_websocket.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
import asyncio
1616

1717
import pytest
18-
from flaky import flaky
1918

2019
from playwright.async_api import Error
2120

@@ -112,7 +111,6 @@ def on_web_socket(ws):
112111
assert received == ["incoming", b"\x04\x02"]
113112

114113

115-
@flaky
116114
async def test_should_reject_wait_for_event_on_close_and_error(page, ws_server):
117115
async with page.expect_event("websocket") as ws_info:
118116
await page.evaluate(

0 commit comments

Comments
 (0)