Paths that explore rendered as full-body ``**` `** —`` source sections. * Headers are bold labels, not ATX headings (issue #778).
(text: string)
| 31 | /** Paths that explore rendered as full-body ``**`<path>`** —`` source sections. |
| 32 | * Headers are bold labels, not ATX headings (issue #778). */ |
| 33 | function sourcedFiles(text: string): string[] { |
| 34 | const out: string[] = []; |
| 35 | for (const line of text.split('\n')) { |
| 36 | const m = line.match(/^\*\*`(.+?)`\*\* —/); |
| 37 | if (m) out.push(m[1].trim()); |
| 38 | } |
| 39 | return out; |
| 40 | } |
| 41 | |
| 42 | describe('codegraph_explore — multi-term corroboration tier', () => { |
| 43 | let testDir: string; |
no outgoing calls
no test coverage detected