Fork me on GitHub
#test-check
<
2022-09-30
>
arohner12:09:23

Is there a way to get good logging about which property failed in a test? I have 4 conditions that all need to be true, so it would be nice to see after shrinking: “on the smallest failure, check 2 returned false”. I could println, but then it logs before shrinking

colinkahn13:09:41

You can use https://github.com/gfredericks/test.chuck which supports is assertions. That will report which ones failed.

arohner13:09:58

oh very cool, thank you. I’m already using chuck, but didn’t know about that feature