(name: string, f: () => void)
| 8 | equal: (a: Value, b: Value) => boolean |
| 9 | ): void { |
| 10 | const it = (name: string, f: () => void) => |
| 11 | it_(name, () => { |
| 12 | for (let i = 0; i < 100; i++) { |
| 13 | f() |
| 14 | } |
| 15 | }) |
| 16 | |
| 17 | describe("differ laws", () => { |
| 18 | it("combining patches is associative", () => { |
no test coverage detected