(schema: Schema.Schema<A, I, R>, a: A, expected: string)
| 350 | }, |
| 351 | |
| 352 | pretty<A, I, R>(schema: Schema.Schema<A, I, R>, a: A, expected: string) { |
| 353 | const pretty = Pretty.make(schema) |
| 354 | strictEqual(pretty(a), expected) |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | return out |
nothing calls this directly
no test coverage detected