You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -122,19 +153,47 @@ export default function addRCATools(
122
153
},
123
154
);
124
155
125
-
tools.listTestIds=server.tool(
126
-
"listTestIds",
127
-
"List test IDs from a BrowserStack Automate build, optionally filtered by status",
156
+
tools.getBuildId=server.tool(
157
+
"getBuildId",
158
+
"Get the BrowserStack build ID for a given project and build name.",
128
159
{
129
160
projectName: z
130
161
.string()
131
162
.describe(
132
-
"The Browserstack project name used while creation of test run. Check browserstack.yml or similar project configuration files. If found extract it and provide to user,IF not found or unsure, prompt the user for this value. Do not make assumptions",
163
+
"The Browserstack project name used while creation of test run. Check browserstack.yml or similar project configuration files. If found extract it and provide to user,IF not found or unsure, prompt the user for this value. Do not make assumptions",
133
164
),
134
165
buildName: z
135
166
.string()
136
167
.describe(
137
-
"The Browserstack build name used while creation of test run. Check browserstack.yml or similar project configuration files. If found extract it and provide to user,IF not found or unsure, prompt the user for this value. Do not make assumptions",
168
+
"The Browserstack build name used while creation of test run. Check browserstack.yml or similar project configuration files. If found extract it and provide to user, IF not found or unsure, prompt the user for this value. Do not make assumptions",
0 commit comments