This repository has been archived by the owner on Jun 24, 2022. It is now read-only.
Releases: dubzzz/ava-fast-check
Releases · dubzzz/ava-fast-check
[fix] seed badly reported whenever user set specific parameters
testProp(
'should do stuff',
[/*arbitraries*/],
(...args) => true,
{ numRuns: 48 });
Due to { numRuns: 48 }
the report was showing should do stuff (seed=undefined)
.
Now it shows the seed that have been used for the test execution instead of undefined
.