We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c23c3a commit e7f4666Copy full SHA for e7f4666
tests/integration/renderer/test_redraw.py
@@ -29,6 +29,11 @@ def on_click(_):
29
30
dash_duo.wait_for_text_to_equal("#counter", "1")
31
dash_duo.find_element("#redraw").click()
32
- dash_duo.wait_for_text_to_equal("#counter", "2")
+ # dash_duo.wait_for_text_to_equal("#counter", "2")
33
+ # time.sleep(1)
34
35
+
36
+ ## the above was changed due to a mechanism change that generates a new React component, thus resetting the counter
37
+ dash_duo.wait_for_text_to_equal("#counter", "1")
38
time.sleep(1)
39
0 commit comments