arela
Version:
AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.
23 lines • 603 B
TypeScript
/**
* Test runner for verifying slice extraction
*/
import type { TestResult } from "./types.js";
export declare class TestRunner {
/**
* Detect the test framework used in the project
*/
detectTestFramework(cwd?: string): Promise<string>;
/**
* Run tests and return results
*/
runTests(cwd?: string, framework?: string): Promise<TestResult>;
/**
* Run test command for specific framework
*/
private runTestCommand;
/**
* Parse test output based on framework
*/
private parseTestOutput;
}
//# sourceMappingURL=test-runner.d.ts.map