@@ -201,6 +201,7 @@ describe('buildTimelineObjsForRundown', () => {
201
201
partInstance : createMockPartInstance ( 'part0' ) ,
202
202
pieceInstances : [ ] ,
203
203
calculatedTimings : DEFAULT_PART_TIMINGS ,
204
+ regenerateTimelineAt : undefined ,
204
205
} ,
205
206
}
206
207
@@ -221,6 +222,7 @@ describe('buildTimelineObjsForRundown', () => {
221
222
partInstance : createMockPartInstance ( 'part0' ) ,
222
223
pieceInstances : [ createMockPieceInstance ( 'piece0' ) ] ,
223
224
calculatedTimings : DEFAULT_PART_TIMINGS ,
225
+ regenerateTimelineAt : undefined ,
224
226
} ,
225
227
}
226
228
@@ -254,6 +256,7 @@ describe('buildTimelineObjsForRundown', () => {
254
256
) ,
255
257
pieceInstances : [ createMockPieceInstance ( 'piece0' ) ] ,
256
258
calculatedTimings : DEFAULT_PART_TIMINGS ,
259
+ regenerateTimelineAt : undefined ,
257
260
} ,
258
261
}
259
262
@@ -279,13 +282,15 @@ describe('buildTimelineObjsForRundown', () => {
279
282
partInstance : createMockPartInstance ( 'part0' ) ,
280
283
pieceInstances : [ createMockPieceInstance ( 'piece0' ) ] ,
281
284
calculatedTimings : DEFAULT_PART_TIMINGS ,
285
+ regenerateTimelineAt : undefined ,
282
286
} ,
283
287
next : {
284
288
nowInPart : 0 ,
285
289
partStarted : undefined ,
286
290
partInstance : createMockPartInstance ( 'part1' ) ,
287
291
pieceInstances : [ createMockPieceInstance ( 'piece1' ) ] ,
288
292
calculatedTimings : DEFAULT_PART_TIMINGS ,
293
+ regenerateTimelineAt : undefined ,
289
294
} ,
290
295
}
291
296
@@ -312,13 +317,15 @@ describe('buildTimelineObjsForRundown', () => {
312
317
partInstance : createMockPartInstance ( 'part0' , { autoNext : true , expectedDuration : 5000 } ) ,
313
318
pieceInstances : [ createMockPieceInstance ( 'piece0' ) ] ,
314
319
calculatedTimings : DEFAULT_PART_TIMINGS ,
320
+ regenerateTimelineAt : undefined ,
315
321
} ,
316
322
next : {
317
323
nowInPart : 0 ,
318
324
partStarted : undefined ,
319
325
partInstance : createMockPartInstance ( 'part1' ) ,
320
326
pieceInstances : [ createMockPieceInstance ( 'piece1' ) ] ,
321
327
calculatedTimings : DEFAULT_PART_TIMINGS ,
328
+ regenerateTimelineAt : undefined ,
322
329
} ,
323
330
}
324
331
@@ -353,13 +360,15 @@ describe('buildTimelineObjsForRundown', () => {
353
360
) ,
354
361
pieceInstances : [ createMockPieceInstance ( 'piece9' ) ] ,
355
362
calculatedTimings : DEFAULT_PART_TIMINGS ,
363
+ regenerateTimelineAt : undefined ,
356
364
} ,
357
365
current : {
358
366
nowInPart : 1234 ,
359
367
partStarted : 5678 ,
360
368
partInstance : createMockPartInstance ( 'part0' ) ,
361
369
pieceInstances : [ createMockPieceInstance ( 'piece0' ) ] ,
362
370
calculatedTimings : DEFAULT_PART_TIMINGS ,
371
+ regenerateTimelineAt : undefined ,
363
372
} ,
364
373
}
365
374
@@ -395,6 +404,7 @@ describe('buildTimelineObjsForRundown', () => {
395
404
) ,
396
405
pieceInstances : [ createMockPieceInstance ( 'piece9' ) , createMockPieceInstance ( 'piece8' ) ] ,
397
406
calculatedTimings : DEFAULT_PART_TIMINGS ,
407
+ regenerateTimelineAt : undefined ,
398
408
} ,
399
409
current : {
400
410
nowInPart : 1234 ,
@@ -409,6 +419,7 @@ describe('buildTimelineObjsForRundown', () => {
409
419
fromPartPostroll : 400 ,
410
420
fromPartKeepalive : 100 ,
411
421
} ,
422
+ regenerateTimelineAt : undefined ,
412
423
} ,
413
424
}
414
425
@@ -448,6 +459,7 @@ describe('buildTimelineObjsForRundown', () => {
448
459
} ) ,
449
460
] ,
450
461
calculatedTimings : DEFAULT_PART_TIMINGS ,
462
+ regenerateTimelineAt : undefined ,
451
463
} ,
452
464
current : {
453
465
nowInPart : 1234 ,
@@ -462,6 +474,7 @@ describe('buildTimelineObjsForRundown', () => {
462
474
fromPartPostroll : 400 ,
463
475
fromPartKeepalive : 100 ,
464
476
} ,
477
+ regenerateTimelineAt : undefined ,
465
478
} ,
466
479
}
467
480
@@ -488,6 +501,7 @@ describe('buildTimelineObjsForRundown', () => {
488
501
partInstance : createMockPartInstance ( 'part0' , { autoNext : true , expectedDuration : 5000 } ) ,
489
502
pieceInstances : [ createMockPieceInstance ( 'piece0' ) ] ,
490
503
calculatedTimings : DEFAULT_PART_TIMINGS ,
504
+ regenerateTimelineAt : undefined ,
491
505
} ,
492
506
next : {
493
507
nowInPart : 0 ,
@@ -502,6 +516,7 @@ describe('buildTimelineObjsForRundown', () => {
502
516
fromPartPostroll : 400 ,
503
517
fromPartKeepalive : 100 ,
504
518
} ,
519
+ regenerateTimelineAt : undefined ,
505
520
} ,
506
521
}
507
522
@@ -543,6 +558,7 @@ describe('buildTimelineObjsForRundown', () => {
543
558
} ) ,
544
559
] ,
545
560
calculatedTimings : DEFAULT_PART_TIMINGS ,
561
+ regenerateTimelineAt : undefined ,
546
562
} ,
547
563
next : {
548
564
nowInPart : 0 ,
@@ -565,6 +581,7 @@ describe('buildTimelineObjsForRundown', () => {
565
581
fromPartPostroll : 400 ,
566
582
fromPartKeepalive : 100 ,
567
583
} ,
584
+ regenerateTimelineAt : undefined ,
568
585
} ,
569
586
}
570
587
@@ -597,6 +614,7 @@ describe('buildTimelineObjsForRundown', () => {
597
614
) ,
598
615
pieceInstances : [ createMockPieceInstance ( 'piece9' ) ] ,
599
616
calculatedTimings : DEFAULT_PART_TIMINGS ,
617
+ regenerateTimelineAt : undefined ,
600
618
}
601
619
602
620
it ( 'infinite starting in current' , ( ) => {
@@ -613,6 +631,7 @@ describe('buildTimelineObjsForRundown', () => {
613
631
createMockInfinitePieceInstance ( 'piece1' , { } , { plannedStartedPlayback : undefined } ) ,
614
632
] ,
615
633
calculatedTimings : DEFAULT_PART_TIMINGS ,
634
+ regenerateTimelineAt : undefined ,
616
635
} ,
617
636
}
618
637
@@ -641,6 +660,7 @@ describe('buildTimelineObjsForRundown', () => {
641
660
partInstance : createMockPartInstance ( 'part0' ) ,
642
661
pieceInstances : [ createMockPieceInstance ( 'piece0' ) ] ,
643
662
calculatedTimings : DEFAULT_PART_TIMINGS ,
663
+ regenerateTimelineAt : undefined ,
644
664
} ,
645
665
}
646
666
@@ -669,6 +689,7 @@ describe('buildTimelineObjsForRundown', () => {
669
689
partInstance : createMockPartInstance ( 'part0' ) ,
670
690
pieceInstances : [ createMockPieceInstance ( 'piece0' ) ] ,
671
691
calculatedTimings : DEFAULT_PART_TIMINGS ,
692
+ regenerateTimelineAt : undefined ,
672
693
} ,
673
694
}
674
695
@@ -696,6 +717,7 @@ describe('buildTimelineObjsForRundown', () => {
696
717
partInstance : createMockPartInstance ( 'part0' ) ,
697
718
pieceInstances : [ createMockPieceInstance ( 'piece0' ) , continueInfinitePiece ( infinitePiece ) ] ,
698
719
calculatedTimings : DEFAULT_PART_TIMINGS ,
720
+ regenerateTimelineAt : undefined ,
699
721
} ,
700
722
}
701
723
@@ -727,6 +749,7 @@ describe('buildTimelineObjsForRundown', () => {
727
749
) ,
728
750
pieceInstances : [ createMockPieceInstance ( 'piece0' ) , infinitePiece ] ,
729
751
calculatedTimings : DEFAULT_PART_TIMINGS ,
752
+ regenerateTimelineAt : undefined ,
730
753
} ,
731
754
next : {
732
755
nowInPart : 0 ,
@@ -742,6 +765,7 @@ describe('buildTimelineObjsForRundown', () => {
742
765
) ,
743
766
pieceInstances : [ createMockPieceInstance ( 'piece1' ) , continueInfinitePiece ( infinitePiece ) ] ,
744
767
calculatedTimings : DEFAULT_PART_TIMINGS ,
768
+ regenerateTimelineAt : undefined ,
745
769
} ,
746
770
}
747
771
@@ -771,6 +795,7 @@ describe('buildTimelineObjsForRundown', () => {
771
795
) ,
772
796
pieceInstances : [ createMockPieceInstance ( 'piece0' ) , createMockInfinitePieceInstance ( 'piece6' ) ] ,
773
797
calculatedTimings : DEFAULT_PART_TIMINGS ,
798
+ regenerateTimelineAt : undefined ,
774
799
} ,
775
800
next : {
776
801
nowInPart : 0 ,
@@ -789,6 +814,7 @@ describe('buildTimelineObjsForRundown', () => {
789
814
...DEFAULT_PART_TIMINGS ,
790
815
fromPartKeepalive : 100 ,
791
816
} ,
817
+ regenerateTimelineAt : undefined ,
792
818
} ,
793
819
}
794
820
@@ -821,6 +847,7 @@ describe('buildTimelineObjsForRundown', () => {
821
847
createMockInfinitePieceInstance ( 'piece6' , { excludeDuringPartKeepalive : true } ) ,
822
848
] ,
823
849
calculatedTimings : DEFAULT_PART_TIMINGS ,
850
+ regenerateTimelineAt : undefined ,
824
851
} ,
825
852
next : {
826
853
nowInPart : 0 ,
@@ -839,6 +866,7 @@ describe('buildTimelineObjsForRundown', () => {
839
866
...DEFAULT_PART_TIMINGS ,
840
867
fromPartKeepalive : 100 ,
841
868
} ,
869
+ regenerateTimelineAt : undefined ,
842
870
} ,
843
871
}
844
872
0 commit comments