()
| 227 | type FullPrefix = `${Prefix}${Separator}` |
| 228 | const pref = `${prefix}${separator ?? "-"}` as FullPrefix |
| 229 | const arb = (): S.Arbitrary<Type> => (fc) => |
| 230 | StringIdArb()(fc).map( |
| 231 | (x) => (pref + x.substring(0, 50 - pref.length)) as Type |
| 232 | ) |
| 233 | // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment |
| 234 | const s = StringIdSchemaBase |
| 235 | .pipe( |
no test coverage detected