28 lines
699 B
TypeScript
28 lines
699 B
TypeScript
|
|
export declare const runTestsTool: {
|
||
|
|
name: string;
|
||
|
|
description: string;
|
||
|
|
inputSchema: {
|
||
|
|
type: "object";
|
||
|
|
properties: {
|
||
|
|
project_path: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
};
|
||
|
|
test_file: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
};
|
||
|
|
test_name: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
required: string[];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
export declare function executeRunTests(args: {
|
||
|
|
project_path: string;
|
||
|
|
test_file?: string;
|
||
|
|
test_name?: string;
|
||
|
|
}): Promise<string>;
|
||
|
|
//# sourceMappingURL=runTests.d.ts.map
|