You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This test only fails when using flutter_test instead of test (however, in the actual test case I need to use flutter_test as there are some widgets being tested), so the interesting thing is this test will work:
The first code snippet test (with flutter_test) now just hangs, but previously it ran correctly in rxdart 0.27.1. The second code snippet (with test) works on all version of rxdart.
The text was updated successfully, but these errors were encountered:
I'm still running into this - unfortunately wrapping our entire widget test in runAsync causes it to fail for other reasons so its not a reasonable workaround for us.
I've found that this for some reason fixes the tests await stream.doOnData((_) {}).first but seems like an ugly hack.
Hello! After I have upgraded from rxdart 0.27.1 to 0.27.5, my tests have started failing. I found the test starts failing from rxdart 0.27.2:
This test only fails when using
flutter_test
instead oftest
(however, in the actual test case I need to useflutter_test
as there are some widgets being tested), so the interesting thing is this test will work:The first code snippet test (with
flutter_test
) now just hangs, but previously it ran correctly in rxdart 0.27.1. The second code snippet (withtest
) works on all version of rxdart.The text was updated successfully, but these errors were encountered: