Migrate to a monorepo structure (#2909)
This commit is contained in:
6
packages/twenty-front/src/testing/mockedClient.ts
Normal file
6
packages/twenty-front/src/testing/mockedClient.ts
Normal file
@ -0,0 +1,6 @@
|
||||
import { ApolloClient, InMemoryCache } from '@apollo/client';
|
||||
|
||||
export const mockedClient = new ApolloClient({
|
||||
uri: process.env.REACT_APP_SERVER_BASE_URL + '/graphql',
|
||||
cache: new InMemoryCache(),
|
||||
});
|
||||
Reference in New Issue
Block a user