/** * Test wrapper command * * Runs deno test and transforms output to structured JSON. * * @module cli/commands/test */ export interface TestResult { success: boolean; summary: { total: number; passed: number; failed: number; skipped: number; duration_ms: number; }; failures: Array<{ file: string; test: string; error: string; line?: number; }>; } export declare function parseTestOutput(output: string, exitCode: number): TestResult; //# sourceMappingURL=command.d.ts.map