We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cb9240 commit d4a6649Copy full SHA for d4a6649
tests/test_app/tests/test_components.py
@@ -509,7 +509,6 @@ class PyscriptTests(PlaywrightTestCase):
509
def setUpClass(cls):
510
super().setUpClass()
511
cls.page.goto(f"http://{cls.host}:{cls._port}/pyscript/")
512
- cls.page.set_default_timeout(10000)
513
514
def test_0_hello_world(self):
515
self.page.wait_for_selector("#hello-world-loading")
tests/test_app/tests/utils.py
@@ -47,7 +47,7 @@ def setUpClass(cls):
47
headless = strtobool(os.environ.get("PLAYWRIGHT_HEADLESS", GITHUB_ACTIONS))
48
cls.browser = cls.playwright.chromium.launch(headless=bool(headless))
49
cls.page = cls.browser.new_page()
50
- cls.page.set_default_timeout(5000)
+ cls.page.set_default_timeout(10000)
51
52
@classmethod
53
def setUpServer(cls):
0 commit comments