Maksym
Results
1
comments of
Maksym
There is my ugly workaround to the issue ```js jest.mock('@apollo/client', () => ({ ...jest.requireActual('@apollo/client'), useQuery: jest.fn(), useMutation: jest.fn(), })); const { useQuery, useMutation } = require('@apollo/client'); export const renderWithApolloClient =...