(events)
| 180 | }); |
| 181 | |
| 182 | function writeEvents(events) { |
| 183 | const file = path.join(evoDir, 'memory_graph.jsonl'); |
| 184 | fs.writeFileSync(file, events.map(JSON.stringify).join('\n') + '\n', 'utf8'); |
| 185 | } |
| 186 | |
| 187 | function runReport(extraArgs) { |
| 188 | const args = (extraArgs || []).join(' '); |
no outgoing calls
no test coverage detected