@nbakka/mcp-appium 2.0.79 → 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 +2 -12
- package/package.json +1 -1
package/lib/server.js
CHANGED
|
@@ -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
|
);
|