(input: A, f: (input: A) => unknown)
| 22 | } |
| 23 | |
| 24 | function assertDoesNotMutate<A>(input: A, f: (input: A) => unknown): void { |
| 25 | const before = structuredClone(input) |
| 26 | f(input) |
| 27 | deepStrictEqual(input, before) |
| 28 | } |
| 29 | |
| 30 | describe("JsonSchema", () => { |
| 31 | describe("meta-schema URIs", () => { |
no test coverage detected