(label, fn)
| 25 | dispatchHook, |
| 26 | extractApplyPatchTargets, |
| 27 | parseApplyPatchOperations, |
| 28 | projectCodexOutput, |
| 29 | } = require('../hooks_src/codex-adapter'); |
| 30 | |
| 31 | let passed = 0; |
| 32 | let failed = 0; |
| 33 | |
| 34 | function check(label, fn) { |
| 35 | try { |
| 36 | fn(); |
| 37 | passed++; |
| 38 | } catch (err) { |
| 39 | failed++; |
no outgoing calls
no test coverage detected