File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -509,7 +509,6 @@ class PyscriptTests(PlaywrightTestCase):
509
509
def setUpClass (cls ):
510
510
super ().setUpClass ()
511
511
cls .page .goto (f"http://{ cls .host } :{ cls ._port } /pyscript/" )
512
- cls .page .set_default_timeout (10000 )
513
512
514
513
def test_0_hello_world (self ):
515
514
self .page .wait_for_selector ("#hello-world-loading" )
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def setUpClass(cls):
47
47
headless = strtobool (os .environ .get ("PLAYWRIGHT_HEADLESS" , GITHUB_ACTIONS ))
48
48
cls .browser = cls .playwright .chromium .launch (headless = bool (headless ))
49
49
cls .page = cls .browser .new_page ()
50
- cls .page .set_default_timeout (5000 )
50
+ cls .page .set_default_timeout (10000 )
51
51
52
52
@classmethod
53
53
def setUpServer (cls ):
You can’t perform that action at this time.
0 commit comments