UNPKG

fast-check

Version:

Property based testing framework for JavaScript (like QuickCheck)

9 lines (8 loc) 276 B
export class UnbiasedProperty { constructor(property) { this.property = property; this.isAsync = () => this.property.isAsync(); this.generate = (mrng, _runId) => this.property.generate(mrng); this.run = (v) => this.property.run(v); } }