(file: ToolFileValue)
| 364 | }; |
| 365 | |
| 366 | const outputFileContent = (file: ToolFileValue): ContentBlock[] => [ |
| 367 | { |
| 368 | type: "text", |
| 369 | text: `File output: ${toolFileSummaryLine(file)}`, |
| 370 | }, |
| 371 | ...toolFileContent(file), |
| 372 | ]; |
| 373 | |
| 374 | const isFileOutputItem = ( |
| 375 | item: ExecuteOutputItem, |
no test coverage detected