
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
apollo-client-mock
Advanced tools
Easily mock your apollo client for testing. It uses Apollo Link Schema under the surface
$ npm install --save-dev apollo-client-mock
To setup Apollo mock client you need to import your schema in as well as your mock resolvers. Then you can setup your client with these two arguments which will then return a createClient
function which you can create a mockedClient for each test. createClient
can optionally take a new set of resolvers that can overwrite your defaults
import typeDefs from '../link/to/schema'
import setupClient from 'apollo-client-mock'
const defaultMocks = {
Query: () => ({
nodes: () => []
//...other queries
}),
Mutation: () => ({
getDomainState: (_, { name }, context) => {
return {
name,
state: 'Open'
}
}
//...other mutations
})
}
const createClient = setupClient(defaultMocks, typeDefs)
export default createClient
//Test file
import React from 'react'
import {
render
} from 'react-testing-library'
import { ApolloProvider } from 'react-apollo'
import createClient from '../testing-utils/mockedClient'
import CheckAvailabilityContainer from '../CheckAvailability'
afterEach(cleanup)
test('should call resolver without blowing up', () => {
const { getByText, container } = render(
<ApolloProvider client={createClient()}>
<CheckAvailabilityContainer />
</ApolloProvider>
)
//the rest of your test
}
The following example shows you can overwrite each resolver per test. This is useful if you want to setup a spy for your resolver function to ensure it has been called. This is particularly useful if your component just makes a mutation but does not actually show the result of the state change in the component.
test('should call resolver without blowing up', () => {
const getDomainState = jest.fn()
const resolverOverwrites = {
Mutation: () => ({
getDomainState
})
}
const { getByText, container } = renderIntoDocument(
<ApolloProvider client={createClient(resolverOverwrites)}>
<CheckAvailabilityContainer />
</ApolloProvider>
)
const submitButton = getByText('Check Availability')
const form = container.querySelector('form')
const input = form.querySelector('input')
input.value = 'vitalik.eth'
Simulate.change(input)
submitButton.click()
expect(getDomainState).toHaveBeenCalledTimes(1)
})
FAQs
Easily mock the Apollo client for your integration tests
The npm package apollo-client-mock receives a total of 139 weekly downloads. As such, apollo-client-mock popularity was classified as not popular.
We found that apollo-client-mock demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.