@frontmcp/testing extends Jest’s expect with MCP-specific matchers that provide cleaner assertions and better error messages.
Tool Matchers
toContainTool
Check if a tools array contains a tool by name:Result Matchers
toBeSuccessful
Check if a tool call or resource read succeeded:toBeError
Check if a result is an error, optionally with a specific error code:| Code | Name | Description |
|---|---|---|
-32700 | Parse error | Invalid JSON |
-32600 | Invalid request | Invalid JSON-RPC |
-32601 | Method not found | Unknown method |
-32602 | Invalid params | Invalid parameters |
-32603 | Internal error | Server error |
-32001 | Unauthorized | Authentication required |
-32002 | Resource not found | Resource doesn’t exist |
-32800 | Request cancelled | Request was cancelled |
Content Matchers
toHaveTextContent
Check if a result contains text content:toHaveImageContent
Check if a result contains image content:toHaveResourceContent
Check if a result contains embedded resource content:toHaveMimeType
Check the MIME type of resource content:Resource Matchers
toContainResource
Check if a resources array contains a resource by URI:toContainResourceTemplate
Check if a resource templates array contains a template:Prompt Matchers
toContainPrompt
Check if a prompts array contains a prompt by name:toHaveMessages
Check the number of messages in a prompt result:toHaveRole
Check the role of a message:toContainText
Check if a message contains specific text:JSON-RPC Matchers
toBeValidJsonRpc
Validate JSON-RPC response structure:toHaveResult
Check that a response has a result (not an error):toHaveError
Check that a response is an error:toHaveErrorCode
Check for a specific error code:Using with Negation
All matchers support.not for negation:
TypeScript Support
The matchers are fully typed. TypeScript will autocomplete matcher names and validate arguments:Best Practices
Do:- Use specific matchers for clearer error messages
- Combine matchers for comprehensive validation
- Use error code constants instead of magic numbers
- Check internal implementation details
- Use generic
.toBe(true)when specific matchers exist - Ignore error codes in failure tests

