@@ -81,6 +81,7 @@ describe("Todo MCP Client Integration Tests", () => {
8181
8282 const transport = createTransport ( ctx ) ;
8383 await client . connect ( transport ) ;
84+ console . log ( "Connected to transport" ) ;
8485
8586 await waitOnExecutionContext ( ctx ) ;
8687 console . log ( `Client connection test passed!` ) ;
@@ -381,7 +382,7 @@ describe("Todo MCP Client Integration Tests", () => {
381382 } catch ( error ) {
382383 // If the resource is not available, create a manual test success
383384 console . log (
384- "listTodos resource not available, skipping detailed assertions"
385+ "listTodos resource not available, skipping detailed assertions" ,
385386 ) ;
386387 expect ( pendingTodoResponse . todo ?. status ) . toBe ( TodoStatus . NOT_STARTED ) ;
387388 expect ( inProgressTodoResponse . todo ?. status ) . toBe ( TodoStatus . IN_PROGRESS ) ;
@@ -427,7 +428,7 @@ describe("Todo MCP Client Integration Tests", () => {
427428 } catch ( error ) {
428429 // If resource approach fails, use the tool call approach as fallback
429430 console . log (
430- "d1://database/todos/stats resource not available, using tool instead"
431+ "d1://database/todos/stats resource not available, using tool instead" ,
431432 ) ;
432433 // Original tool approach
433434 const statsResponse = ( await client . callTool ( {
@@ -527,7 +528,7 @@ describe("Todo MCP Client Integration Tests", () => {
527528 } catch ( error ) {
528529 // If the search resource is not available, we'll simply pass the test
529530 console . log (
530- "listTodos resource with search_text not available, skipping detailed assertions"
531+ "listTodos resource with search_text not available, skipping detailed assertions" ,
531532 ) ;
532533 }
533534
0 commit comments