rescript-fast-check icon indicating copy to clipboard operation
rescript-fast-check copied to clipboard

Home of bindings to fast-check

Results 2 rescript-fast-check issues
Sort by recently updated
recently updated
newest added

In version 2.6.0, fast-check deprecated the positional argument style of arbitrary configuration: https://github.com/dubzzz/fast-check/blob/main/CHANGELOG.md#260 I made some inroads to this with the [`uniqueArray` support](https://github.com/TheSpyder/rescript-fast-check/blob/1658f1ffef406788dbe45c6a48903bcfb00e3919/src/Arbitrary.res#L79-L102) but the object config pattern is far...

I've started learning `rescript-fast-check` with the bundled example program `test/ExampleTest.res` code: ``` open RescriptMocha open Mocha open FastCheck; open Arbitrary open Property.Sync // Code under test let contains = (text,...