(args: Record<string, unknown>)
| 53 | }); |
| 54 | |
| 55 | const text = async (args: Record<string, unknown>): Promise<string> => |
| 56 | (await h.execute('codegraph_node', args)).content.map((c) => c.text).join('\n'); |
| 57 | |
| 58 | it('reads a whole file like Read by default — `<n>\\t<line>` lines (no pad), imports + gaps included', async () => { |
| 59 | const out = await text({ file: 'b.ts' }); // no includeCode needed — content is the default |
no test coverage detected