Skip to content

Commit ba7a910

Browse files
Remove all timeouts from test_chaining_event.py as requested
Co-Authored-By: Alek Petuskey <[email protected]>
1 parent 95c2680 commit ba7a910

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_chaining_event.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def is_at_least_value(value: str):
3838
return False
3939

4040
run_button.click()
41-
expect(chain_heading).to_have_text(is_at_least_value, timeout=15000)
41+
expect(chain_heading).to_have_text(is_at_least_value)
4242

4343
expect(chain_heading).to_have_text("10")
4444

@@ -52,7 +52,7 @@ def test_collatz(reflex_web_app: AppHarness, page: Page, chaining_event_url):
5252
collatz_box = page.locator('[id="collatz"]')
5353

5454
collatz_input = collatz_box.get_by_role("textbox")
55-
collatz_input.fill("10", timeout=4000)
55+
collatz_input.fill("10")
5656

5757
def is_expected_value(value: str):
5858
return value == "1"
@@ -61,4 +61,4 @@ def is_expected_value(value: str):
6161

6262
collatz_heading = page.locator('[id="collatz"] > .rt-Flex > span')
6363

64-
expect(collatz_heading).to_have_text(is_expected_value, timeout=15000)
64+
expect(collatz_heading).to_have_text(is_expected_value)

0 commit comments

Comments
 (0)