@nbakka/mcp-appium 2.0.65 → 2.0.66
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 +5 -4
- package/package.json +1 -1
package/lib/server.js
CHANGED
|
@@ -655,10 +655,10 @@ tool(
|
|
|
655
655
|
"review_testcases",
|
|
656
656
|
"Open JSON test cases in browser for manual approval",
|
|
657
657
|
{
|
|
658
|
-
testCases: z.array(z.object({
|
|
659
|
-
id: z.string(),
|
|
660
|
-
title: z.string(),
|
|
661
|
-
description: z.string(),
|
|
658
|
+
testCases: zod_1.z.array(zod_1.z.object({
|
|
659
|
+
id: zod_1.z.string(),
|
|
660
|
+
title: zod_1.z.string(),
|
|
661
|
+
description: zod_1.z.string(),
|
|
662
662
|
})).describe("Array of test cases to review")
|
|
663
663
|
},
|
|
664
664
|
async ({ testCases }) => {
|
|
@@ -712,6 +712,7 @@ tool(
|
|
|
712
712
|
);
|
|
713
713
|
|
|
714
714
|
|
|
715
|
+
|
|
715
716
|
return server;
|
|
716
717
|
};
|
|
717
718
|
|