diff --git a/oclif.config.ts b/oclif.config.ts new file mode 100644 index 0000000..75a113d --- /dev/null +++ b/oclif.config.ts @@ -0,0 +1,19 @@ +export default { + name: 'testspec-cli', + version: '1.0.0', + bin: 'testspec', + commands: { + generate: { + description: 'Generate unit tests from natural language requirements', + load: () => import('./src/commands/generate.js'), + }, + detect: { + description: 'Detect the test framework used in your project', + load: () => import('./src/commands/detect.js'), + }, + interactive: { + description: 'Interactive wizard for creating test cases', + load: () => import('./src/commands/interactive.js'), + }, + }, +};