Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Releases: dubzzz/ava-fast-check

[fix] seed badly reported whenever user set specific parameters

30 Aug 02:01
Compare
Choose a tag to compare
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.