@@ -137,7 +137,7 @@ describe('Apollo Angular', () => {
137
137
expect ( content . content ) . toBeSimilarStringTo ( `document = MyFeedDocument;` ) ;
138
138
expect ( content . content ) . not . toContain ( '@NgModule' ) ;
139
139
expect ( content . content ) . toContain ( '@client' ) ;
140
- validateTypeScript ( content , modifiedSchema , docs , { } ) ;
140
+ await validateTypeScript ( content , modifiedSchema , docs , { } ) ;
141
141
} ) ;
142
142
143
143
it ( 'Should import namedClient and remove namedClient directive' , async ( ) => {
@@ -168,7 +168,7 @@ describe('Apollo Angular', () => {
168
168
client = 'custom';
169
169
` ) ;
170
170
expect ( content . content ) . not . toContain ( '@namedClient' ) ;
171
- validateTypeScript ( content , modifiedSchema , docs , { } ) ;
171
+ await validateTypeScript ( content , modifiedSchema , docs , { } ) ;
172
172
} ) ;
173
173
} ) ;
174
174
@@ -199,7 +199,7 @@ describe('Apollo Angular', () => {
199
199
})
200
200
export class TestGQL extends Apollo.Query
201
201
` ) ;
202
- validateTypeScript ( content , rootSchema , docs , { } ) ;
202
+ await validateTypeScript ( content , rootSchema , docs , { } ) ;
203
203
} ) ;
204
204
205
205
it ( 'Should handle @client' , async ( ) => {
@@ -223,7 +223,7 @@ describe('Apollo Angular', () => {
223
223
224
224
expect ( content . content ) . toBeSimilarStringTo ( `document = MyFeedDocument;` ) ;
225
225
226
- validateTypeScript ( content , schema , docs , { } ) ;
226
+ await validateTypeScript ( content , schema , docs , { } ) ;
227
227
} ) ;
228
228
} ) ;
229
229
@@ -283,7 +283,7 @@ describe('Apollo Angular', () => {
283
283
expect ( content . content ) . toBeSimilarStringTo ( `client = 'extra';` ) ;
284
284
expect ( content . content ) . not . toContain ( '@namedClient' ) ;
285
285
286
- validateTypeScript ( content , modifiedSchema , docs , { } ) ;
286
+ await validateTypeScript ( content , modifiedSchema , docs , { } ) ;
287
287
} ) ;
288
288
it ( 'should be allowed to define custom operation suffixes in config' , async ( ) => {
289
289
const modifiedSchema = extendSchema ( schema , addToSchema ) ;
@@ -294,26 +294,34 @@ describe('Apollo Angular', () => {
294
294
}
295
295
}
296
296
` ) ;
297
- const upVotePost = gql ( `
298
- mutation upVotePost($postId: Int!) {
299
- upVotePost(postId: $postId) {
300
- id
301
- votes
302
- }
303
- }
297
+ const vote = gql ( `
298
+ mutation vote($repoFullName: String!, $type: VoteType!) {
299
+ vote(repoFullName: $repoFullName, type: $type) {
300
+ score
301
+ id
302
+ vote {
303
+ vote_value
304
+ }
305
+ }
306
+ }
304
307
` ) ;
305
- const newPost = gql ( `
306
- subscription newPost {
307
- newPost {
308
- id
309
- title
308
+ const commentAdded = gql ( `
309
+ subscription onCommentAdded($repoFullName: String!) {
310
+ commentAdded(repoFullName: $repoFullName) {
311
+ id
312
+ postedBy {
313
+ login
314
+ html_url
310
315
}
316
+ createdAt
317
+ content
311
318
}
319
+ }
312
320
` ) ;
313
321
const docs = [
314
322
{ location : '' , document : myFeed } ,
315
- { location : '' , document : upVotePost } ,
316
- { location : '' , document : newPost } ,
323
+ { location : '' , document : commentAdded } ,
324
+ { location : '' , document : vote } ,
317
325
] ;
318
326
const content = ( await plugin (
319
327
modifiedSchema ,
@@ -329,9 +337,9 @@ describe('Apollo Angular', () => {
329
337
) ) as Types . ComplexPluginOutput ;
330
338
331
339
expect ( content . content ) . toContain ( `export class MyFeedQueryService` ) ;
332
- expect ( content . content ) . toContain ( `export class UpVotePostMutationService ` ) ;
333
- expect ( content . content ) . toContain ( `export class NewPostSubscriptionService ` ) ;
334
- validateTypeScript ( content , modifiedSchema , docs , { } ) ;
340
+ expect ( content . content ) . toContain ( `export class OnCommentAddedSubscriptionService ` ) ;
341
+ expect ( content . content ) . toContain ( `export class VoteMutationService ` ) ;
342
+ await validateTypeScript ( content , modifiedSchema , docs , { } ) ;
335
343
} ) ;
336
344
} ) ;
337
345
@@ -357,7 +365,6 @@ describe('Apollo Angular', () => {
357
365
358
366
// NgModule
359
367
expect ( content . prepend ) . toContain ( `import * as ApolloCore from 'apollo-client';` ) ;
360
- // console.log('content.content', content.content);
361
368
expect ( content . content ) . toBeSimilarStringTo ( `
362
369
@Injectable({ providedIn: 'root' })
363
370
export class ApolloAngularSDK {
@@ -374,7 +381,7 @@ describe('Apollo Angular', () => {
374
381
}
375
382
}
376
383
` ) ;
377
- validateTypeScript ( content , modifiedSchema , docs , { } ) ;
384
+ await validateTypeScript ( content , modifiedSchema , docs , { } ) ;
378
385
} ) ;
379
386
it ( 'should generate a SDK service with custom settings' , async ( ) => {
380
387
const modifiedSchema = extendSchema ( schema , addToSchema ) ;
@@ -418,7 +425,7 @@ describe('Apollo Angular', () => {
418
425
}
419
426
}
420
427
` ) ;
421
- validateTypeScript ( content , modifiedSchema , docs , { } ) ;
428
+ await validateTypeScript ( content , modifiedSchema , docs , { } ) ;
422
429
} ) ;
423
430
} ) ;
424
431
@@ -447,7 +454,7 @@ describe('Apollo Angular', () => {
447
454
}
448
455
) ) as Types . ComplexPluginOutput ;
449
456
450
- validateTypeScript ( content , schema , docs , { } ) ;
457
+ await validateTypeScript ( content , schema , docs , { } ) ;
451
458
} ) ;
452
459
} ) ;
453
460
} ) ;
0 commit comments