Skip to content
This repository was archived by the owner on Sep 2, 2020. It is now read-only.

Commit ec0f37a

Browse files
author
Matt Gadda
committed
make prettier
1 parent d405b53 commit ec0f37a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/server/src/__tests__/GraphQLCache-test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,15 +160,15 @@ describe('GraphQLCache', () => {
160160

161161
describe('getFragmentDefinitions', () => {
162162
it('it caches fragments found through single glob in `includes`', async () => {
163-
const config = graphQLRC.getProjectConfig("testSingularIncludesGlob");
163+
const config = graphQLRC.getProjectConfig('testSingularIncludesGlob');
164164
const fragmentDefinitions = await cache.getFragmentDefinitions(config);
165-
expect(fragmentDefinitions.get("testFragment")).to.not.be.undefined;
165+
expect(fragmentDefinitions.get('testFragment')).to.not.be.undefined;
166166
});
167167

168168
it('it caches fragments found through multiple globs in `includes`', async () => {
169-
const config = graphQLRC.getProjectConfig("testSingularMultipleIncludes");
169+
const config = graphQLRC.getProjectConfig('testSingularMultipleIncludes');
170170
const fragmentDefinitions = await cache.getFragmentDefinitions(config);
171-
expect(fragmentDefinitions.get("testFragment")).to.not.be.undefined;
171+
expect(fragmentDefinitions.get('testFragment')).to.not.be.undefined;
172172
});
173173
});
174174
});

0 commit comments

Comments
 (0)