Andreas Teneketzoglou

Results 2 comments of Andreas Teneketzoglou

another workaround: ```js jest.mock('@apollo/react-hooks', () => ({ ...require.requireActual('@apollo/react-hooks'), useApolloClient: () => ({ readQuery: jest.fn() }), })); ```

I had the same problem as I didn't notice latest breaking change of [V4](https://github.com/pd4d10/vite-plugin-svgr/compare/v3.3.0...v4.0.0) If you use the latest version vite-plugin-svgr (v4), you have to update the import syntax as...