(args: string[])
| 24 | })); |
| 25 | |
| 26 | async function runStoreCommand(args: string[]): Promise<void> { |
| 27 | const { registerStoreCommand } = await import('../../src/commands/store.js'); |
| 28 | const program = new Command(); |
| 29 | registerStoreCommand(program); |
| 30 | await program.parseAsync(['node', 'openspec', 'store', ...args]); |
| 31 | } |
| 32 | |
| 33 | async function getPromptMocks(): Promise<{ |
| 34 | input: ReturnType<typeof vi.fn>; |
no test coverage detected