@@ -340,19 +340,19 @@ describe('ACP server test', { timeout: 40_000 }, () => {
340340
341341 mockFixture . sendServerNotification ( {
342342 method : "mcpServer/startupStatus/updated" ,
343- params : { name : "alpha" , status : "starting" , error : null }
343+ params : { threadId : "thread-id" , name : "alpha" , status : "starting" , error : null }
344344 } ) ;
345345 mockFixture . sendServerNotification ( {
346346 method : "mcpServer/startupStatus/updated" ,
347- params : { name : "beta" , status : "starting" , error : null }
347+ params : { threadId : "thread-id" , name : "beta" , status : "starting" , error : null }
348348 } ) ;
349349 mockFixture . sendServerNotification ( {
350350 method : "mcpServer/startupStatus/updated" ,
351- params : { name : "alpha" , status : "ready" , error : null }
351+ params : { threadId : "thread-id" , name : "alpha" , status : "ready" , error : null }
352352 } ) ;
353353 mockFixture . sendServerNotification ( {
354354 method : "mcpServer/startupStatus/updated" ,
355- params : { name : "beta" , status : "ready" , error : null }
355+ params : { threadId : "thread-id" , name : "beta" , status : "ready" , error : null }
356356 } ) ;
357357
358358 const startup = await startupPromise ;
@@ -403,7 +403,7 @@ describe('ACP server test', { timeout: 40_000 }, () => {
403403
404404 mockFixture . sendServerNotification ( {
405405 method : "mcpServer/startupStatus/updated" ,
406- params : { name : "broken-mcp" , status : "failed" , error : "boom" }
406+ params : { threadId : "thread-id" , name : "broken-mcp" , status : "failed" , error : "boom" }
407407 } ) ;
408408
409409 await vi . waitFor ( ( ) => {
0 commit comments