Browse Source

increased delays to prevent test-flakyness

Rodja Trappe 2 years ago
parent
commit
47cb607dec
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/test_page.py

+ 2 - 2
tests/test_page.py

@@ -130,9 +130,9 @@ def test_wait_for_disconnect(screen: Screen):
         events.append('disconnected')
 
     screen.open('/')
-    screen.wait(0.1)
+    screen.wait(0.5)
     screen.open('/')
-    screen.wait(0.1)
+    screen.wait(0.5)
     assert events == ['connected', 'disconnected', 'connected']