@@ -395,34 +395,52 @@ function getMutations(): Mutation[] {
395
395
] ;
396
396
}
397
397
398
- module ( 'Integration | Relationships | Collection | Mutation' , function ( hooks ) {
399
- setupRenderingTest ( hooks ) ;
400
-
401
- hooks . beforeEach ( function ( ) {
402
- this . owner . register ( 'model:user' , User ) ;
398
+ const STATES : Array < {
399
+ startingState : { name : string ; cb : ( store : Store ) => User } ;
400
+ mutation : Mutation ;
401
+ } > = [ ] ;
402
+
403
+ getStartingState ( ) . forEach ( ( startingState ) => {
404
+ getMutations ( ) . forEach ( ( mutation ) => {
405
+ STATES . push ( {
406
+ startingState,
407
+ mutation,
408
+ } ) ;
403
409
} ) ;
410
+ } ) ;
411
+
412
+ export function runTestGroup ( splitNum : number , offset : number ) {
413
+ STATES . forEach ( ( { startingState, mutation } , index ) => {
414
+ // Run only every Nth test, offset by 0
415
+ if ( index % splitNum !== offset ) {
416
+ return ;
417
+ }
418
+
419
+ module (
420
+ `Integration | Relationships | Collection | Mutation > Starting state: ${ startingState . name } > Mutation: ${ mutation . name } ` ,
421
+ function ( hooks ) {
422
+ setupRenderingTest ( hooks ) ;
423
+
424
+ hooks . beforeEach ( function ( ) {
425
+ this . owner . register ( 'model:user' , User ) ;
426
+ } ) ;
404
427
405
- getStartingState ( ) . forEach ( ( startingState ) => {
406
- module ( `Starting state: ${ startingState . name } ` , function ( ) {
407
- getMutations ( ) . forEach ( ( mutation ) => {
408
- module ( `Mutation: ${ mutation . name } ` , function ( ) {
409
- getMutations ( ) . forEach ( ( mutation2 ) => {
410
- test ( `followed by Mutation: ${ mutation2 . name } ` , async function ( assert ) {
411
- const store = this . owner . lookup ( 'service:store' ) as Store ;
412
- const user = startingState . cb ( store ) ;
413
- const rc = await reactiveContext . call ( this , user , {
414
- identity : null ,
415
- type : 'user' ,
416
- fields : [ { name : 'friends' , kind : 'hasMany' , type : 'user' , options : { async : false , inverse : null } } ] ,
417
- } ) ;
418
- rc . reset ( ) ;
419
-
420
- await applyMutation ( assert , store , user , mutation , rc ) ;
421
- await applyMutation ( assert , store , user , mutation2 , rc ) ;
428
+ getMutations ( ) . forEach ( ( mutation2 ) => {
429
+ test ( `followed by Mutation: ${ mutation2 . name } ` , async function ( assert ) {
430
+ const store = this . owner . lookup ( 'service:store' ) as Store ;
431
+ const user = startingState . cb ( store ) ;
432
+ const rc = await reactiveContext . call ( this , user , {
433
+ identity : null ,
434
+ type : 'user' ,
435
+ fields : [ { name : 'friends' , kind : 'hasMany' , type : 'user' , options : { async : false , inverse : null } } ] ,
422
436
} ) ;
437
+ rc . reset ( ) ;
438
+
439
+ await applyMutation ( assert , store , user , mutation , rc ) ;
440
+ await applyMutation ( assert , store , user , mutation2 , rc ) ;
423
441
} ) ;
424
442
} ) ;
425
- } ) ;
426
- } ) ;
443
+ }
444
+ ) ;
427
445
} ) ;
428
- } ) ;
446
+ }
0 commit comments