@benyue1978/soloflow-mcp
Version:
A Model Context Protocol (MCP) server for project document management with 32 comprehensive prompts covering the complete software development lifecycle
66 lines • 1.45 kB
TypeScript
/**
* Testing function prompts for SoloFlow MCP
* Testing and quality assurance functions
*/
export declare function testingCreateTestPlanPrompt(args: {
feature?: string;
testType?: string;
}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function testingWriteUnitTestsPrompt(args: {
component?: string;
language?: string;
framework?: string;
}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function testingRunTestsPrompt(args: {
testType?: string;
environment?: string;
}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function testingTestReportPrompt(args: {
testRun?: string;
environment?: string;
}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function testingPerformanceTestPrompt(args: {
component?: string;
loadType?: string;
}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
//# sourceMappingURL=testing-prompts.d.ts.map