(file, lines)
| 27 | } |
| 28 | |
| 29 | function writeJsonl(file, lines) { |
| 30 | fs.mkdirSync(path.dirname(file), { recursive: true }); |
| 31 | fs.writeFileSync(file, lines.join('\n') + '\n'); |
| 32 | } |
| 33 | |
| 34 | withTempProject((projectRoot) => { |
| 35 | const first = logAgentRunEvent({ |
no outgoing calls
no test coverage detected