File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed
src/tools/testmanagement-utils Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ export async function pollScenariosTestDetails(
230
230
progressToken : context . _meta ?. progressToken ?? traceId ,
231
231
progress : iteratorCount ,
232
232
total,
233
- message : `Fetched ${ array . length } test cases for scenario ${ iteratorCount } out of ${ total } ` ,
233
+ message : `Generated ${ array . length } test cases for scenario ${ iteratorCount } out of ${ total } ` ,
234
234
} ,
235
235
} ) ;
236
236
}
@@ -315,7 +315,7 @@ export async function bulkCreateTestCases(
315
315
method : "notifications/progress" ,
316
316
params : {
317
317
progressToken : context . _meta ?. progressToken ?? "bulk-create" ,
318
- message : `Bulk create done for scenario ${ doneCount } of ${ total } ` ,
318
+ message : `Saving and creating test cases... ` ,
319
319
total,
320
320
progress : doneCount ,
321
321
} ,
@@ -326,7 +326,7 @@ export async function bulkCreateTestCases(
326
326
method : "notifications/progress" ,
327
327
params : {
328
328
progressToken : context . _meta ?. progressToken ?? traceId ,
329
- message : `Bulk create failed for scenario ${ id } : ${ error instanceof Error ? error . message : "Unknown error" } ` ,
329
+ message : `Creation failed for scenario ${ id } : ${ error instanceof Error ? error . message : "Unknown error" } ` ,
330
330
total,
331
331
progress : doneCount ,
332
332
} ,
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export const CreateLCAStepsSchema = z.object({
27
27
} )
28
28
. optional ( )
29
29
. describe (
30
- "Optional credentials for authentication. Extract from the test case details if provided in it. This is required for the test cases which require authentication."
30
+ "Optional credentials for authentication. Extract from the test case details if provided in it. This is required for the test cases which require authentication." ,
31
31
) ,
32
32
local_enabled : z
33
33
. boolean ( )
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export async function pollLCAStatus(
46
46
method : "notifications/progress" ,
47
47
params : {
48
48
progressToken : context . _meta ?. progressToken ?? `lca-${ testCaseId } ` ,
49
- message : `Starting LCA build polling for test case ${ testCaseId } ...` ,
49
+ message : `Generating Low Code Automation ...` ,
50
50
progress : 0 ,
51
51
total : 100 ,
52
52
} ,
@@ -60,7 +60,7 @@ export async function pollLCAStatus(
60
60
method : "notifications/progress" ,
61
61
params : {
62
62
progressToken : context . _meta ?. progressToken ?? `lca-${ testCaseId } ` ,
63
- message : `Initial wait completed. Starting active polling for LCA build status ...` ,
63
+ message : `Half of the Low Code Automation is done, Wait for some more time ...` ,
64
64
progress : 10 ,
65
65
total : 100 ,
66
66
} ,
@@ -133,7 +133,6 @@ export async function pollLCAStatus(
133
133
Math . floor ( ( elapsedTime / maxWaitTimeMs ) * 90 ) + 10 ,
134
134
) ;
135
135
136
-
137
136
await context . sendNotification ( {
138
137
method : "notifications/progress" ,
139
138
params : {
You can’t perform that action at this time.
0 commit comments