Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
297 Bytes
import { InMemoryCache } from 'apollo-cache-inmemory';
import { ApolloClient } from 'apollo-client';
import { MockLink } from 'apollo-link-mock';
export const mockApolloClient = (mocks: any) => {
return new ApolloClient({
cache: new InMemoryCache(),
link: new MockLink(mocks),
});
};