Define global parameters that will be used by all the runners
Global parameters
fc.configureGlobal({ numRuns: 10 });//...fc.assert( fc.property( fc.nat(), fc.nat(), (a, b) => a + b === b + a ), { seed: 42 }) // equivalent to { numRuns: 10, seed: 42 } Copy
fc.configureGlobal({ numRuns: 10 });//...fc.assert( fc.property( fc.nat(), fc.nat(), (a, b) => a + b === b + a ), { seed: 42 }) // equivalent to { numRuns: 10, seed: 42 }
Since 1.18.0
Define global parameters that will be used by all the runners