(fp: string)
| 20 | } from './helpers/transcript-section-logger'; |
| 21 | |
| 22 | const read = (fp: string): ToolCallLike => ({ tool: 'Read', input: { file_path: fp }, output: '' }); |
| 23 | const bash = (command: string): ToolCallLike => ({ tool: 'Bash', input: { command }, output: '' }); |
| 24 | |
| 25 | describe('extractSectionReads', () => { |
no outgoing calls
no test coverage detected