Files
bigwo/dev-assistant-mcp/dist/tools/runTests.d.ts
2026-03-12 12:47:56 +08:00

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