We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cef2b2f commit bc8c2a0Copy full SHA for bc8c2a0
1 file changed
test/integration/test/server/mcp.test.ts
@@ -354,7 +354,7 @@ describe('Zod v4', () => {
354
355
mcpServer.server.registerCapabilities({
356
extensions: {
357
- 'io.modelcontextprotocol/grouping': { listChanged: true }
+ 'io.modelcontextprotocol/test-extension': { listChanged: true }
358
}
359
});
360
@@ -363,7 +363,7 @@ describe('Zod v4', () => {
363
364
const capabilities = client.getServerCapabilities();
365
expect(capabilities?.extensions).toBeDefined();
366
- expect(capabilities?.extensions?.['io.modelcontextprotocol/grouping']).toEqual({ listChanged: true });
+ expect(capabilities?.extensions?.['io.modelcontextprotocol/test-extension']).toEqual({ listChanged: true });
367
368
369
0 commit comments