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
The proptest lib has strategies for shrinking values which fail property tests.
For now, PropValue uses the default strategy, which for our case does not really help a lot: our generated values are too big, and the default shrinking would use too many steps for giving us something useful.
It seems PropValue could implement the ValueTree trait, which contains a simplify method.
The text was updated successfully, but these errors were encountered:
The
proptest
lib has strategies for shrinking values which fail property tests.For now,
PropValue
uses the default strategy, which for our case does not really help a lot: our generated values are too big, and the default shrinking would use too many steps for giving us something useful.It seems
PropValue
could implement theValueTree
trait, which contains asimplify
method.The text was updated successfully, but these errors were encountered: