diff --git a/docs/source/api/react/testing.md b/docs/source/api/react/testing.md index 59b65a0d755..20dec8db9bf 100644 --- a/docs/source/api/react/testing.md +++ b/docs/source/api/react/testing.md @@ -14,7 +14,7 @@ api_reference: true import { MockedProvider } from "@apollo/client/testing"; ``` -The `MockedProvider` component is a mocked version of [`ApolloProvider`](./hooks/#the-apolloprovider-component) that doesn't send network requests to your API. Instead, you to specify the exact response payload for a given GraphQL operation. This enables you to test your application's operations without communicating with a server. +The `MockedProvider` component is a mocked version of [`ApolloProvider`](./hooks/#the-apolloprovider-component) that doesn't send network requests to your API. Instead, it allows you to specify the exact response payload for a given GraphQL operation. This enables you to test your application's operations without communicating with a server. #### Props