(result: { content: Array<{ type: string; text?: string }>; isError?: boolean })
| 68 | } |
| 69 | |
| 70 | function getText(result: { content: Array<{ type: string; text?: string }>; isError?: boolean }): string { |
| 71 | return result.content.map((c) => c.text ?? '').join('\n'); |
| 72 | } |
| 73 | |
| 74 | describe('MCP stale-slice guard (#1474)', () => { |
| 75 | let fixtureDir: string; // the project that goes stale |
no test coverage detected