File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
dev-packages/e2e-tests/test-applications/node-express-v5/tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ test('Should record transactions for mcp handlers', async ({ baseURL }) => {
1818 return transactionEvent . transaction === 'POST /messages' ;
1919 } ) ;
2020 const toolTransactionPromise = waitForTransaction ( 'node-express-v5' , transactionEvent => {
21- return transactionEvent . transaction === 'mcp-server/tool: echo' ;
21+ return transactionEvent . transaction === 'tools/call echo' ;
2222 } ) ;
2323
2424 const toolResult = await client . callTool ( {
@@ -51,7 +51,7 @@ test('Should record transactions for mcp handlers', async ({ baseURL }) => {
5151 return transactionEvent . transaction === 'POST /messages' ;
5252 } ) ;
5353 const resourceTransactionPromise = waitForTransaction ( 'node-express-v5' , transactionEvent => {
54- return transactionEvent . transaction === 'mcp-server/resource: echo' ;
54+ return transactionEvent . transaction === 'resources/read echo://foobar ' ;
5555 } ) ;
5656
5757 const resourceResult = await client . readResource ( {
@@ -76,7 +76,7 @@ test('Should record transactions for mcp handlers', async ({ baseURL }) => {
7676 return transactionEvent . transaction === 'POST /messages' ;
7777 } ) ;
7878 const promptTransactionPromise = waitForTransaction ( 'node-express-v5' , transactionEvent => {
79- return transactionEvent . transaction === 'mcp-server/prompt: echo' ;
79+ return transactionEvent . transaction === 'prompts/get echo' ;
8080 } ) ;
8181
8282 const promptResult = await client . getPrompt ( {
You can’t perform that action at this time.
0 commit comments