(text: string, expected: unknown)
| 14 | // The test code for the jsonc module can also be found in the testcode directory. |
| 15 | |
| 16 | function assertValidParse(text: string, expected: unknown) { |
| 17 | assertEquals(parse(text), expected); |
| 18 | } |
| 19 | |
| 20 | function assertInvalidParse( |
| 21 | text: string, |
no test coverage detected