(name: string, cond: boolean)
| 10 | |
| 11 | let passed = 0, failed = 0; |
| 12 | function check(name: string, cond: boolean) { |
| 13 | if (cond) { passed++; console.log(` ✓ ${name}`); } |
| 14 | else { failed++; console.log(` ✗ ${name}`); } |
| 15 | } |
| 16 | |
| 17 | const ALL = [ |
| 18 | 'read_file','write_file','edit_text','multi_edit','edit_symbol','multi_file_edit', |
no outgoing calls
no test coverage detected