@@ -85,7 +85,7 @@ describe('Changes test', () => {
8585    } ) 
8686
8787    test ( 'Change method content' ,  async  ( )  =>  { 
88-       const  result  =  await  buildChangelogPackage ( 'changelog/change-method' ) 
88+       const  result  =  await  buildChangelogPackage ( 'changelog/change-inside- method' ) 
8989
9090      expect ( result ) . toEqual ( changesSummaryMatcher ( { 
9191        [ BREAKING_CHANGE_TYPE ] : 1 , 
@@ -113,6 +113,19 @@ describe('Changes test', () => {
113113      expect ( result ) . toEqual ( numberOfImpactedOperationsMatcher ( {  [ ANNOTATION_CHANGE_TYPE ] : 1  } ) ) 
114114    } ) 
115115
116+     test ( 'Add prefix to server' ,  async  ( )  =>  { 
117+       const  result  =  await  buildChangelogPackage ( 'changelog/add-prefix-to-server' ) 
118+ 
119+       expect ( result ) . toEqual ( changesSummaryMatcher ( { 
120+         [ BREAKING_CHANGE_TYPE ] : 1 , 
121+         [ NON_BREAKING_CHANGE_TYPE ] : 1 , 
122+       } ) ) 
123+       expect ( result ) . toEqual ( numberOfImpactedOperationsMatcher ( { 
124+         [ BREAKING_CHANGE_TYPE ] : 1 , 
125+         [ NON_BREAKING_CHANGE_TYPE ] : 1 , 
126+       } ) ) 
127+     } ) 
128+ 
116129    test ( 'Remove prefix from server' ,  async  ( )  =>  { 
117130      const  result  =  await  buildChangelogPackage ( 'changelog/remove-prefix-from-server' ) 
118131
@@ -125,6 +138,13 @@ describe('Changes test', () => {
125138        [ NON_BREAKING_CHANGE_TYPE ] : 1 , 
126139      } ) ) 
127140    } ) 
141+ 
142+     test ( 'move-prefix-from-server-to-path' ,  async  ( )  =>  { 
143+       const  result  =  await  buildChangelogPackage ( 'changelog/move-prefix-from-server-to-path' ) 
144+ 
145+       expect ( result ) . toEqual ( changesSummaryMatcher ( {  [ ANNOTATION_CHANGE_TYPE ] : 1  } ) ) 
146+       expect ( result ) . toEqual ( numberOfImpactedOperationsMatcher ( {  [ ANNOTATION_CHANGE_TYPE ] : 1  } ) ) 
147+     } ) 
128148  } ) 
129149
130150  describe ( 'Diffs collecting in the root-level properties' ,  ( )  =>  { 
@@ -135,6 +155,20 @@ describe('Changes test', () => {
135155      expect ( result ) . toEqual ( numberOfImpactedOperationsMatcher ( {  [ ANNOTATION_CHANGE_TYPE ] : 1  } ) ) 
136156    } ) 
137157
158+     test ( 'Remove root servers' ,  async  ( )  =>  { 
159+       const  result  =  await  buildChangelogPackage ( 'changelog/remove-root-servers' ) 
160+ 
161+       expect ( result ) . toEqual ( changesSummaryMatcher ( {  [ ANNOTATION_CHANGE_TYPE ] : 1  } ) ) 
162+       expect ( result ) . toEqual ( numberOfImpactedOperationsMatcher ( {  [ ANNOTATION_CHANGE_TYPE ] : 1  } ) ) 
163+     } ) 
164+ 
165+     test ( 'Remove server' ,  async  ( )  =>  { 
166+       const  result  =  await  buildChangelogPackage ( 'changelog/remove-server' ) 
167+ 
168+       expect ( result ) . toEqual ( changesSummaryMatcher ( {  [ ANNOTATION_CHANGE_TYPE ] : 1  } ) ) 
169+       expect ( result ) . toEqual ( numberOfImpactedOperationsMatcher ( {  [ ANNOTATION_CHANGE_TYPE ] : 1  } ) ) 
170+     } ) 
171+ 
138172    test ( 'Change root servers' ,  async  ( )  =>  { 
139173      const  result  =  await  buildChangelogPackage ( 'changelog/change-root-servers' ) 
140174
@@ -149,6 +183,13 @@ describe('Changes test', () => {
149183      expect ( result ) . toEqual ( numberOfImpactedOperationsMatcher ( {  [ BREAKING_CHANGE_TYPE ] : 1  } ) ) 
150184    } ) 
151185
186+     test ( 'Remove security' ,  async  ( )  =>  { 
187+       const  result  =  await  buildChangelogPackage ( 'changelog/remove-security' ) 
188+ 
189+       expect ( result ) . toEqual ( changesSummaryMatcher ( {  [ NON_BREAKING_CHANGE_TYPE ] : 2  } ) ) 
190+       expect ( result ) . toEqual ( numberOfImpactedOperationsMatcher ( {  [ NON_BREAKING_CHANGE_TYPE ] : 1  } ) ) 
191+     } ) 
192+ 
152193    test ( 'Add securityScheme' ,  async  ( )  =>  { 
153194      const  result  =  await  buildChangelogPackage ( 'changelog/add-securityScheme' ) 
154195
0 commit comments