(rootDir: string)
| 73 | }); |
| 74 | |
| 75 | function createOpenSpecRoot(rootDir: string): void { |
| 76 | fs.mkdirSync(path.join(rootDir, 'openspec', 'specs'), { recursive: true }); |
| 77 | fs.mkdirSync(path.join(rootDir, 'openspec', 'changes', 'archive'), { recursive: true }); |
| 78 | fs.writeFileSync(path.join(rootDir, 'openspec', 'config.yaml'), 'schema: spec-driven\n'); |
| 79 | } |
| 80 | |
| 81 | async function registerStoreFixture(id: string): Promise<string> { |
| 82 | const root = path.join(tempDir, 'stores', id); |
no outgoing calls
no test coverage detected