summaryrefslogtreecommitdiff
path: root/spec/frontend/helpers/mock_apollo_helper.js
blob: 8a5a160231c479c608699abdd33d72d8f1f2ac14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { InMemoryCache } from 'apollo-cache-inmemory';
import { createMockClient } from 'mock-apollo-client';
import VueApollo from 'vue-apollo';

export default (handlers = []) => {
  const fragmentMatcher = { match: () => true };
  const cache = new InMemoryCache({
    fragmentMatcher,
    addTypename: false,
  });

  const mockClient = createMockClient({ cache });

  if (Array.isArray(handlers)) {
    handlers.forEach(([query, value]) => mockClient.setRequestHandler(query, value));
  } else {
    throw new Error('You should pass an array of handlers to mock Apollo client');
  }

  const apolloProvider = new VueApollo({ defaultClient: mockClient });

  return apolloProvider;
};