Is there a possibility to change the text that is printed if a dart expect
fails?
It works fine with primitives but working with lists of objects makes it really hard to find the difference.
UPDATE
Testing library uses toString()
method to display the value diffs in the test result. I am using freezed so by default this will just dump all the object properties.
A solution is to implement a custom toString
in your class to alter how objects are displayed in test result.
Use the
reason
parameter toexpect
:prints: