Skip to content

Commit

Permalink
Fixed false positive test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Baranowski committed Jul 10, 2018
1 parent b4e9c35 commit eeb142e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/apollo-boost/src/__tests__/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('config', () => {
fetch: customFetcher,
});

client.query({ query }).then(({ data }) => {
return client.query({ query }).then(({ data }) => {
expect(customFetcher).toHaveBeenCalledTimes(1);
expect(stripSymbols(data)).toEqual({ foo: 'bar' });
});
Expand Down

0 comments on commit eeb142e

Please sign in to comment.