/** import { getErrorMessage } from "./../types/common"; * Test Execution * * Runs tests and parses results for AI execution workflow. */ import type { TestResult } from "./executor"; /** * Test configuration */ export interface TestConfig { command: string; args?: string[]; cwd?: string; timeout?: number; } /** * Run tests * * Supports common test commands: * - `npm test` * - `npm run lint` * - `npm run build` * * @param config Test configuration * @returns Test result */ export declare function runTests(config: TestConfig): Promise; /** * Run multiple test commands in sequence * * @param configs Array of test configurations * @returns Combined test result */ export declare function runTestSuite(configs: TestConfig[]): Promise; //# sourceMappingURL=test-runner.d.ts.map