(f: () => void, message: string)
| 343 | }, |
| 344 | |
| 345 | parseError(f: () => void, message: string) { |
| 346 | throws(f, (err) => { |
| 347 | assertInstanceOf(err, ParseResult.ParseError) |
| 348 | strictEqual(err.message, message) |
| 349 | }) |
| 350 | }, |
| 351 | |
| 352 | pretty<A, I, R>(schema: Schema.Schema<A, I, R>, a: A, expected: string) { |
| 353 | const pretty = Pretty.make(schema) |
nothing calls this directly
no test coverage detected