/** * openlore test command * * Reports spec test coverage across the project by scanning test files * for openlore annotation tags: * * // openlore: {"domain":"auth","requirement":"UserLogin","scenario":"SuccessfulLogin",...} * # openlore: ... (Python) * * Options: * --discover Extend coverage via semantic test title matching (requires --use-llm) * --min-coverage Exit 1 if effective coverage is below N% (CI gate) * --domains Limit report to specific domains * --test-dirs Directories to scan (default: spec-tests,src) * --json Machine-readable output * * To write tests with real assertions, use the openlore-write-tests skill * (Vibe: /openlore-write-tests, Cline: openlore-write-tests workflow). */ import { Command } from 'commander'; export declare const testCommand: Command; //# sourceMappingURL=test.d.ts.map