@@ -91,14 +91,14 @@ describe('Task Lifecycle Integration Tests', () => {
9191
9292 return { task } ;
9393 } ,
94- async getTask ( _args , extra ) {
94+ async getTask ( extra ) {
9595 const task = await extra . taskStore . getTask ( extra . taskId ) ;
9696 if ( ! task ) {
9797 throw new Error ( `Task ${ extra . taskId } not found` ) ;
9898 }
9999 return task ;
100100 } ,
101- async getTaskResult ( _args , extra ) {
101+ async getTaskResult ( extra ) {
102102 const result = await extra . taskStore . getTaskResult ( extra . taskId ) ;
103103 return result as { content : Array < { type : 'text' ; text : string } > } ;
104104 }
@@ -173,14 +173,14 @@ describe('Task Lifecycle Integration Tests', () => {
173173
174174 return { task } ;
175175 } ,
176- async getTask ( _args , extra ) {
176+ async getTask ( extra ) {
177177 const task = await extra . taskStore . getTask ( extra . taskId ) ;
178178 if ( ! task ) {
179179 throw new Error ( `Task ${ extra . taskId } not found` ) ;
180180 }
181181 return task ;
182182 } ,
183- async getTaskResult ( _args , extra ) {
183+ async getTaskResult ( extra ) {
184184 const result = await extra . taskStore . getTaskResult ( extra . taskId ) ;
185185 return result as { content : Array < { type : 'text' ; text : string } > } ;
186186 }
@@ -470,14 +470,14 @@ describe('Task Lifecycle Integration Tests', () => {
470470
471471 return { task } ;
472472 } ,
473- async getTask ( _args , extra ) {
473+ async getTask ( extra ) {
474474 const task = await extra . taskStore . getTask ( extra . taskId ) ;
475475 if ( ! task ) {
476476 throw new Error ( `Task ${ extra . taskId } not found` ) ;
477477 }
478478 return task ;
479479 } ,
480- async getTaskResult ( _args , extra ) {
480+ async getTaskResult ( extra ) {
481481 const result = await extra . taskStore . getTaskResult ( extra . taskId ) ;
482482 return result as { content : Array < { type : 'text' ; text : string } > } ;
483483 }
@@ -959,14 +959,14 @@ describe('Task Lifecycle Integration Tests', () => {
959959
960960 return { task } ;
961961 } ,
962- async getTask ( _args , extra ) {
962+ async getTask ( extra ) {
963963 const task = await extra . taskStore . getTask ( extra . taskId ) ;
964964 if ( ! task ) {
965965 throw new Error ( `Task ${ extra . taskId } not found` ) ;
966966 }
967967 return task ;
968968 } ,
969- async getTaskResult ( _args , extra ) {
969+ async getTaskResult ( extra ) {
970970 const result = await extra . taskStore . getTaskResult ( extra . taskId ) ;
971971 return result as { content : Array < { type : 'text' ; text : string } > } ;
972972 }
@@ -1175,14 +1175,14 @@ describe('Task Lifecycle Integration Tests', () => {
11751175
11761176 return { task } ;
11771177 } ,
1178- async getTask ( _args , extra ) {
1178+ async getTask ( extra ) {
11791179 const task = await extra . taskStore . getTask ( extra . taskId ) ;
11801180 if ( ! task ) {
11811181 throw new Error ( `Task ${ extra . taskId } not found` ) ;
11821182 }
11831183 return task ;
11841184 } ,
1185- async getTaskResult ( _args , extra ) {
1185+ async getTaskResult ( extra ) {
11861186 const result = await extra . taskStore . getTaskResult ( extra . taskId ) ;
11871187 return result as { content : Array < { type : 'text' ; text : string } > } ;
11881188 }
@@ -1384,14 +1384,14 @@ describe('Task Lifecycle Integration Tests', () => {
13841384
13851385 return { task } ;
13861386 } ,
1387- async getTask ( _args , extra ) {
1387+ async getTask ( extra ) {
13881388 const task = await extra . taskStore . getTask ( extra . taskId ) ;
13891389 if ( ! task ) {
13901390 throw new Error ( `Task ${ extra . taskId } not found` ) ;
13911391 }
13921392 return task ;
13931393 } ,
1394- async getTaskResult ( _args , extra ) {
1394+ async getTaskResult ( extra ) {
13951395 const result = await extra . taskStore . getTaskResult ( extra . taskId ) ;
13961396 return result as { content : Array < { type : 'text' ; text : string } > } ;
13971397 }
0 commit comments