targetprocess-mcp-server 1.0.18-a → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -778,7 +778,7 @@ server.registerTool('get_not_covered_user_stories_in_feature', {
|
|
|
778
778
|
let userStories = [];
|
|
779
779
|
try {
|
|
780
780
|
for (const userStory of userStoriesResults) {
|
|
781
|
-
const covered = userStory
|
|
781
|
+
const covered = userStory?.CustomFields.find((field) => field.Name === "Test Automation")?.Value === "Done";
|
|
782
782
|
userStories.push({
|
|
783
783
|
id: userStory.Id,
|
|
784
784
|
name: userStory.Name,
|