@@ -13,8 +13,8 @@ describe("formatTaskBranches", () => {
1313 const branches = [ "feat/TOKEN-800_new-feature" , "fix/TOKEN-123_some-fix" ] ;
1414 const result = formatTaskBranches ( branches , DEFAULT_CONFIG ) ;
1515 expect ( result ) . toEqual ( [
16- ' feat/TOKEN-800_new-feature <https://test-instance.org/browse/TOKEN-800>' ,
17- ' fix/TOKEN-123_some-fix <https://test-instance.org/browse/TOKEN-123>'
16+ " feat/TOKEN-800_new-feature <https://test-instance.org/browse/TOKEN-800>" ,
17+ " fix/TOKEN-123_some-fix <https://test-instance.org/browse/TOKEN-123>"
1818 ] ) ;
1919 } ) ;
2020
@@ -81,7 +81,7 @@ describe("outputMergedBranches", () => {
8181 const branchOutput = [
8282 "feat/TOKEN-800_new-feature <https://test-instance.org/browse/TOKEN-800>" ,
8383 "fix/TOKEN-123_some-fix <https://test-instance.org/browse/TOKEN-123>"
84- ]
84+ ] ;
8585 expect ( infoSpy ) . toHaveBeenNthCalledWith ( 2 , branchOutput . join ( "\n" ) ) ;
8686
8787 const localDelete = `git branch --delete ${ branches . join ( " " ) } ` ;
@@ -100,7 +100,7 @@ describe("outputMergedBranches", () => {
100100 const branchOutput = [
101101 "feat/TOKEN-800_new-feature <https://test-instance.org/browse/TOKEN-800>" ,
102102 "fix/TOKEN-123_some-fix <https://test-instance.org/browse/TOKEN-123>"
103- ]
103+ ] ;
104104 expect ( infoSpy ) . toHaveBeenNthCalledWith ( 2 , branchOutput . join ( "\n" ) ) ;
105105
106106 const localDelete = `git branch --delete ${ branches . join ( " " ) } ` ;
@@ -126,7 +126,7 @@ describe("outputMergedBranches", () => {
126126 expect ( infoSpy ) . toHaveBeenNthCalledWith ( 4 , `locally:\n ${ localDelete } ` ) ;
127127 expect ( infoSpy ) . toHaveBeenCalledTimes ( 4 ) ;
128128 expect ( warnSpy ) . not . toHaveBeenCalled ( ) ;
129- } )
129+ } ) ;
130130
131131 it ( "should log a message when no branches are merged" , ( ) => {
132132 outputMergedBranches ( [ ] , "master" , DEFAULT_CONFIG ) ;
0 commit comments