(source: S.Schema<A, I>)
| 379 | |
| 380 | describe("should handle annotations", () => { |
| 381 | const expectHook = <A, I>(source: S.Schema<A, I>) => { |
| 382 | const schema = source.annotations({ pretty: () => () => "custom pretty" }) |
| 383 | Util.assertions.pretty(schema, null as any, "custom pretty") |
| 384 | } |
| 385 | |
| 386 | it("void", () => { |
| 387 | expectHook(S.Void) |
no test coverage detected