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