Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
JoviDeCroock committed Mar 21, 2020
1 parent 8a909cd commit 0d05c91
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions exchanges/graphcache/src/cacheExchange.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,7 @@ describe('data dependencies', () => {
const client = createClient({ url: 'http://0.0.0.0' });
const { source: ops$, next } = makeSubject<Operation>();

jest
.spyOn(client, 'reexecuteOperation')
.mockImplementation(next);
jest.spyOn(client, 'reexecuteOperation').mockImplementation(next);

const opMutation = client.createRequestOperation('mutation', {
key: 1,
Expand All @@ -439,7 +437,7 @@ describe('data dependencies', () => {
const updates = {
Mutation: {
concealAuthor: jest.fn(),
}
},
};

pipe(
Expand Down

0 comments on commit 0d05c91

Please sign in to comment.