-
First, thank you and you all for this great library! I am very happy to see property-based testing in Typescript, and then in such a good state! :) As for the question, consider this pseudo-ish code that I changed from the tutorial:
So I want to have test different properties and have them 1) appear in mocha in the usual line-per-test fashion (properties -> Property X should hold ✔️ , properties -> Property Y should hold ❌ ) and 2) generate Is there a way to do what I want? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
One of the solutions could be to use one expect per check:
Would it works in your case? |
Beta Was this translation helpful? Give feedback.
One of the solutions could be to use one expect per check:
Would it works in your case?