-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test reports don't contain useful info ("Multiple exceptions were thrown") #951
Comments
would be nice also to have print statements output in the patrol output so |
Yeah, we'll try to do this as well. It's definitely not convenient currently. |
size: M |
@bartekpacia any solutions? |
Please consider prioritizing this. It's the most upvoted bug issue. And it's been up for more than a year. EDIT: I just found out about this workaround in the official doc to ignore these expections. I want to print them I can't see any of it in the console output. |
This is unacceptable. We want to know what these exceptions are.
The code that prints this message lives here in
flutter_test
– in the_runTest()
method of the abstract classTestWidgetsFlutterBinding
.TestWidgetsFlutterBinding
is extended byLiveTestWidgetsFlutterBinding
.LiveTestWidgetsFlutterBinding
is extended byIntegrationTestWidgetsFlutterBinding
fromintegration_test
.We should be able to override
FlutterError.onError
to print full exception message and stack trace.cc @mateuszwojtczak, @jBorkowska
The text was updated successfully, but these errors were encountered: