()
| 58 | `; |
| 59 | |
| 60 | function test() { |
| 61 | const output = print(transpile(parse(convertImports(testInput)))).code; |
| 62 | if (output !== testOutput) { |
| 63 | throw `Test failed\n\nInput: ${testInput}\n\nExpected Output: ${testOutput}\n\nActual Output: ${output}`; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | test(); |
| 68 |
no test coverage detected