Files
twenty/packages/twenty-front/src/testing/mockedClient.ts
2023-12-10 18:10:54 +01:00

7 lines
203 B
TypeScript

import { ApolloClient, InMemoryCache } from '@apollo/client';
export const mockedClient = new ApolloClient({
uri: process.env.REACT_APP_SERVER_BASE_URL + '/graphql',
cache: new InMemoryCache(),
});