@nbakka/mcp-appium 2.0.78 → 2.0.80
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/lib/server.js +3 -13
- package/package.json +1 -1
package/lib/server.js
CHANGED
|
@@ -674,7 +674,7 @@ tool(
|
|
|
674
674
|
}
|
|
675
675
|
);
|
|
676
676
|
|
|
677
|
-
|
|
677
|
+
tool(
|
|
678
678
|
"generate_testcases_from_ticket_data",
|
|
679
679
|
"Generate manual test cases by analyzing PNG design with JIRA requirements",
|
|
680
680
|
{
|
|
@@ -754,19 +754,9 @@ ${guidelines}`
|
|
|
754
754
|
await fs.writeFile(testCasesFilePath, `Error generating test cases: ${error.message}`);
|
|
755
755
|
});
|
|
756
756
|
|
|
757
|
-
return
|
|
758
|
-
content: [{
|
|
759
|
-
type: "text",
|
|
760
|
-
text: "✅ Test case generation started. Use 'check_testcases_status' tool to check if generation is complete."
|
|
761
|
-
}]
|
|
762
|
-
};
|
|
757
|
+
return "✅ Test case generation started. Use 'check_testcases_status' tool to check if generation is complete.";
|
|
763
758
|
} catch (err) {
|
|
764
|
-
return {
|
|
765
|
-
content: [{
|
|
766
|
-
type: "text",
|
|
767
|
-
text: `❌ Error starting test case generation: ${err.message}`
|
|
768
|
-
}]
|
|
769
|
-
};
|
|
759
|
+
return `❌ Error starting test case generation: ${err.message}`;
|
|
770
760
|
}
|
|
771
761
|
}
|
|
772
762
|
);
|