Closed sol closed 1 year ago
@parsonsmatt any chance to get this merged sometime soon?
Sure! Sorry for the delay. Do you mind adding a changelog entry and a version bump so I can release asap?
Sure! Sorry for the delay. Do you mind adding a changelog entry and a version bump so I can release asap?
Done as a separate PR (#27) to not unnecessarily cause conflicts.
property
has aHasCallStack
constraint that we "close" inTest.Hspec.Hedgehog
=> for a user this stack / location is hardly ever helpful => it is better to suppress itNote that Hedgehog does not regularly show these unhelpful locations to the user, as
evalIO
,==
, etc capture their own call stack, which Hedgehog will then use instead. However, if e.g. an exception escapes, then Hedgehog will use them as a fallback. If you want to play around with it, then e.g. addliftIO $ throwIO (ErrorCall "foo")
to some property.