(msg: string)
| 25 | const failures: string[] = []; |
| 26 | const pass = (msg: string) => console.log(` ok ${msg}`); |
| 27 | const fail = (msg: string) => { |
| 28 | console.log(` FAIL ${msg}`); |
| 29 | failures.push(msg); |
| 30 | }; |
| 31 | |
| 32 | // 1. Overlay resolver |
| 33 | console.log('1. Overlay resolver'); |