Ava Fast Check Versions Save

Property based testing for AVA based on fast-check

v1.1.2

4 years ago
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.