( minLength: number, maxLength: number, )
| 46 | ) |
| 47 | |
| 48 | const arbitraryOrderBy = ( |
| 49 | minLength: number, |
| 50 | maxLength: number, |
| 51 | ): fc.Arbitrary<OrderBy> => |
| 52 | fc.array(arbitraryOrderByClause, { minLength, maxLength }) |
| 53 | |
| 54 | const arbitraryValue = fc.oneof( |
| 55 | fc.string(), |
no outgoing calls
no test coverage detected