@@ -120,6 +120,8 @@ describe('StartWorkWebviewController', () => {
120120 customTemplate : '{issueKey}' ,
121121 customPrefixes : [ 'feature/' , 'bugfix/' ] ,
122122 isRovoDevEnabled : true ,
123+ enableIssueTransition : true ,
124+ defaultTransitionName : '' ,
123125 } ;
124126
125127 beforeEach ( ( ) => {
@@ -501,6 +503,8 @@ describe('StartWorkWebviewController', () => {
501503 mockApi . getStartWorkConfig . mockReturnValue ( {
502504 customTemplate : '{issueKey}' ,
503505 customPrefixes : [ 'feature/' , 'bugfix/' ] ,
506+ enableIssueTransition : true ,
507+ defaultTransitionName : '' ,
504508 } ) ;
505509 } ) ;
506510
@@ -534,6 +538,8 @@ describe('StartWorkWebviewController', () => {
534538 ] ) ,
535539 customTemplate : '{issueKey}' ,
536540 customPrefixes : [ 'feature/' , 'bugfix/' ] ,
541+ enableIssueTransition : true ,
542+ defaultTransitionName : '' ,
537543 } ) ;
538544 } ) ;
539545
@@ -566,6 +572,8 @@ describe('StartWorkWebviewController', () => {
566572 ] ) ,
567573 customTemplate : '{issueKey}' ,
568574 customPrefixes : [ 'feature/' , 'bugfix/' ] ,
575+ enableIssueTransition : true ,
576+ defaultTransitionName : '' ,
569577 } ) ;
570578 } ) ;
571579
@@ -582,6 +590,8 @@ describe('StartWorkWebviewController', () => {
582590 repoData : [ ] ,
583591 customTemplate : '{issueKey}' ,
584592 customPrefixes : [ 'feature/' , 'bugfix/' ] ,
593+ enableIssueTransition : true ,
594+ defaultTransitionName : '' ,
585595 } ) ;
586596 } ) ;
587597
@@ -679,6 +689,8 @@ describe('StartWorkWebviewController', () => {
679689 mockApi . getStartWorkConfig . mockReturnValue ( {
680690 customTemplate : '{issueKey}' ,
681691 customPrefixes : [ ] ,
692+ enableIssueTransition : true ,
693+ defaultTransitionName : '' ,
682694 } ) ;
683695
684696 await controller . onMessageReceived ( { type : CommonActionType . Refresh } ) ;
@@ -693,6 +705,8 @@ describe('StartWorkWebviewController', () => {
693705 ] ) ,
694706 customTemplate : '{issueKey}' ,
695707 customPrefixes : [ ] ,
708+ enableIssueTransition : true ,
709+ defaultTransitionName : '' ,
696710 } ) ;
697711 } ) ;
698712
@@ -729,6 +743,8 @@ describe('StartWorkWebviewController', () => {
729743 mockApi . getStartWorkConfig . mockReturnValue ( {
730744 customTemplate : '{issueKey}' ,
731745 customPrefixes : [ ] ,
746+ enableIssueTransition : true ,
747+ defaultTransitionName : '' ,
732748 } ) ;
733749
734750 await controller . onMessageReceived ( { type : CommonActionType . Refresh } ) ;
@@ -743,6 +759,8 @@ describe('StartWorkWebviewController', () => {
743759 ] ) ,
744760 customTemplate : '{issueKey}' ,
745761 customPrefixes : [ ] ,
762+ enableIssueTransition : true ,
763+ defaultTransitionName : '' ,
746764 } ) ;
747765 } ) ;
748766 } ) ;
0 commit comments