@nbakka/mcp-appium 2.0.85 → 2.0.86
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 -3
- package/package.json +1 -1
package/lib/server.js
CHANGED
|
@@ -799,9 +799,9 @@ let approvalSessions = new Map();
|
|
|
799
799
|
|
|
800
800
|
tool(
|
|
801
801
|
"review_testcases",
|
|
802
|
-
"Open test cases in browser for manual approval.
|
|
802
|
+
"Open test cases in browser for manual approval.",
|
|
803
803
|
{
|
|
804
|
-
testCases: zod_1.z.array(zod_1.z.array(zod_1.z.string())).describe("
|
|
804
|
+
testCases: zod_1.z.array(zod_1.z.array(zod_1.z.string())).describe("test cases array generated by tool generate_testcases_from_ticket_data")
|
|
805
805
|
},
|
|
806
806
|
async ({ testCases }) => {
|
|
807
807
|
try {
|
|
@@ -942,8 +942,8 @@ tool(
|
|
|
942
942
|
sessionId: zod_1.z.string().describe("The session ID returned from review_testcases tool")
|
|
943
943
|
},
|
|
944
944
|
async ({ sessionId }) => {
|
|
945
|
+
await new Promise(resolve => setTimeout(resolve, 25000));
|
|
945
946
|
const session = approvalSessions.get(sessionId);
|
|
946
|
-
|
|
947
947
|
if (!session) {
|
|
948
948
|
return JSON.stringify({
|
|
949
949
|
status: "error",
|