File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,6 @@ export default function addTestManagementTools(server: McpServer) {
127
127
issues : z
128
128
. array ( z . string ( ) )
129
129
. optional ( )
130
- . nullish ( )
131
130
. describe (
132
131
"List of the linked Jira, Asana or Azure issues ID's. This should be strictly in array format not the string of json." ,
133
132
) ,
@@ -149,14 +148,12 @@ export default function addTestManagementTools(server: McpServer) {
149
148
tags : z
150
149
. array ( z . string ( ) )
151
150
. optional ( )
152
- . nullish ( )
153
151
. describe (
154
152
"Tags to attach to the test case. This should be strictly in array format not the string of json" ,
155
153
) ,
156
154
custom_fields : z
157
155
. record ( z . string ( ) , z . string ( ) )
158
156
. optional ( )
159
- . nullish ( )
160
157
. describe ( "Map of custom field names to values." ) ,
161
158
} ,
162
159
async ( args ) => {
You can’t perform that action at this time.
0 commit comments