Skip to content

Commit 7c28a40

Browse files
committed
Formatting
1 parent f6870b1 commit 7c28a40

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/tools/testplans.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,12 @@ function configureTestPlanTools(server: McpServer, tokenProvider: () => Promise<
115115
{
116116
project: z.string().describe("The unique identifier (ID or name) of the Azure DevOps project."),
117117
title: z.string().describe("The title of the test case."),
118-
steps: z.string().optional().describe("The steps to reproduce the test case. Make sure to format each step as '1. Step one|Expected result one\n2. Step two|Expected result two. USE '|' as the delimiter between step and expected result. DO NOT use '|' in the description of the step or expected result."),
118+
steps: z
119+
.string()
120+
.optional()
121+
.describe(
122+
"The steps to reproduce the test case. Make sure to format each step as '1. Step one|Expected result one\n2. Step two|Expected result two. USE '|' as the delimiter between step and expected result. DO NOT use '|' in the description of the step or expected result."
123+
),
119124
priority: z.number().optional().describe("The priority of the test case."),
120125
areaPath: z.string().optional().describe("The area path for the test case."),
121126
iterationPath: z.string().optional().describe("The iteration path for the test case."),

0 commit comments

Comments
 (0)