Docs
Launch GraphOS Studio
You're viewing documentation for a previous version of this software. Switch to the latest stable version.

@apollo/react-testing

API reference


Installation

npm install @apollo/react-testing

MockedProvider

import { MockedProvider } from "@apollo/react-testing";

The MockedProvider is a test-utility that allows you to create a mocked version of the

that doesn't send out network requests to your API, but rather allows you to specify the exact response payload for a given request.

The <MockedProvider /> component takes the following props:

PropTypeDescription
mocks?ReadonlyArrayAn array containing a request object and the corresponding response.
addTypename?booleanA boolean indicating whether or not __typename are injected into the documents sent to graphql. This defaults to true.
defaultOptions?DefaultOptionsAn object containing options to pass directly to the ApolloClient instance.
cache?ApolloCacheA custom cache object to be used in your test. Defaults to InMemoryCache. Useful when you need to define a custom dataIdFromObject function for automatic cache updates.
resolvers?ResolversApollo Client local resolvers
childProps?objectProps that should be passed down to the child

Here is an example mocks prop shape:

const mocks = [
{
request: {
query: SOME_QUERY,
variables: { first: 4 }
},
result: {
data: {
dog: {
name: "Douglas"
}
}
}
},
{
request: {
query: SOME_QUERY,
variables: { first: 8}
},
error: new Error("Something went wrong")
}
]

The above shows that if the request SOME_QUERY is fired with { first: 4 } that it results in the data in the result object.

If SOME_QUERY is fired with { first: 8 } then it results in an error.

Example

it("runs the mocked query", () => {
render(
<MockedProvider mocks={mocks}>
<MyQueryComponent />
</MockedProvider>
)
// Run assertions on <MyQueryComponent/>
});
Previous
@apollo/react-ssr
Next
@apollo/react-components
Edit on GitHubEditForumsDiscord

© 2024 Apollo Graph Inc.

Privacy Policy

Company