(schema: Schema.Schema<A, I, R>)
| 50 | * @since 3.10.0 |
| 51 | */ |
| 52 | export const makeLazy = <A, I, R>(schema: Schema.Schema<A, I, R>): LazyArbitrary<A> => { |
| 53 | const description = getDescription(schema.ast, []) |
| 54 | return go(description, { maxDepth: 2 }) |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Returns a fast-check Arbitrary for the `A` type of the provided schema. |
no test coverage detected
searching dependent graphs…