This repository was archived by the owner on Sep 2, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/server/src/__tests__ Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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} ) ;
You can’t perform that action at this time.
0 commit comments