(references: string[], resolvedRoot = appRoot())
| 90 | } |
| 91 | |
| 92 | async function assemble(references: string[], resolvedRoot = appRoot()) { |
| 93 | return assembleReferenceIndex({ |
| 94 | references: references.map((id) => ({ id })), |
| 95 | resolvedRoot, |
| 96 | globalDataDir, |
| 97 | }); |
| 98 | } |
| 99 | |
| 100 | it('indexes a resolved store with first-Purpose-line summaries and the fetch recipe', async () => { |
| 101 | const storeRoot = await registerStore('team-context'); |
no test coverage detected