For records following the recordModel schema
recordModel
Optional
Contraints on the generated record
record({ x: someArbitraryInt, y: someArbitraryInt }, {requiredKeys: []}): Arbitrary<{x?:number,y?:number}>// merge two integer arbitraries to produce a {x, y}, {x}, {y} or {} record Copy
record({ x: someArbitraryInt, y: someArbitraryInt }, {requiredKeys: []}): Arbitrary<{x?:number,y?:number}>// merge two integer arbitraries to produce a {x, y}, {x}, {y} or {} record
Since 0.0.12
For records following the
recordModel
schema