@@ -220,6 +220,7 @@ describe('compareMany', () => {
220220 missing : [ 'KEY3' ] ,
221221 } ) ,
222222 false ,
223+ false ,
223224 ) ;
224225 } ) ;
225226
@@ -240,6 +241,7 @@ describe('compareMany', () => {
240241 extra : [ 'EXTRA_KEY' ] ,
241242 } ) ,
242243 false ,
244+ false ,
243245 ) ;
244246 } ) ;
245247
@@ -261,6 +263,7 @@ describe('compareMany', () => {
261263 empty : [ 'KEY1' ] ,
262264 } ) ,
263265 false ,
266+ false ,
264267 ) ;
265268 } ) ;
266269
@@ -286,6 +289,7 @@ describe('compareMany', () => {
286289 [ { key : 'DUP_KEY' , count : 2 } ] ,
287290 [ { key : 'DUP_EX' , count : 3 } ] ,
288291 false ,
292+ false ,
289293 ) ;
290294 } ) ;
291295
@@ -303,6 +307,7 @@ describe('compareMany', () => {
303307 [ ] ,
304308 [ ] ,
305309 false ,
310+ false ,
306311 ) ;
307312 } ) ;
308313
@@ -346,6 +351,7 @@ describe('compareMany', () => {
346351 mismatches : [ { key : 'KEY1' , expected : 'expected' , actual : 'actual' } ] ,
347352 } ) ,
348353 false ,
354+ false ,
349355 ) ;
350356 } ) ;
351357
@@ -362,7 +368,6 @@ describe('compareMany', () => {
362368 removedDuplicates : [ ] ,
363369 addedEnv : [ 'MISSING_KEY' ] ,
364370 gitignoreUpdated : false ,
365- addedExample : [ ] ,
366371 } ,
367372 } ) ;
368373
@@ -373,7 +378,6 @@ describe('compareMany', () => {
373378
374379 expect ( mockApplyFixes ) . toHaveBeenCalledWith ( {
375380 envPath,
376- examplePath,
377381 missingKeys : [ 'MISSING_KEY' ] ,
378382 duplicateKeys : [ ] ,
379383 ensureGitignore : false ,
@@ -412,7 +416,6 @@ describe('compareMany', () => {
412416 removedDuplicates : [ 'DUPLICATE_KEY' , 'ANOTHER_DUP' ] ,
413417 addedEnv : [ ] ,
414418 gitignoreUpdated : false ,
415- addedExample : [ ] ,
416419 } ,
417420 } ) ;
418421
@@ -423,7 +426,6 @@ describe('compareMany', () => {
423426
424427 expect ( mockApplyFixes ) . toHaveBeenCalledWith ( {
425428 envPath,
426- examplePath,
427429 missingKeys : [ ] ,
428430 duplicateKeys : [ 'DUPLICATE_KEY' , 'ANOTHER_DUP' ] ,
429431 ensureGitignore : false ,
@@ -531,6 +533,7 @@ describe('compareMany', () => {
531533 extra : [ ] ,
532534 } ) ,
533535 false ,
536+ false ,
534537 ) ;
535538 } ) ;
536539
@@ -711,6 +714,7 @@ describe('compareMany', () => {
711714 empty : expect . arrayContaining ( [ 'KEY1' , 'KEY2' ] ) ,
712715 } ) ,
713716 false ,
717+ false ,
714718 ) ;
715719 } ) ;
716720
@@ -790,7 +794,6 @@ describe('compareMany', () => {
790794 removedDuplicates : [ ] ,
791795 addedEnv : [ ] ,
792796 gitignoreUpdated : true ,
793- addedExample : [ ] ,
794797 } ,
795798 } ) ;
796799
@@ -832,6 +835,7 @@ describe('compareMany', () => {
832835 mismatches : [ { key : 'KEY1' , expected : 'exp' , actual : 'act' } ] ,
833836 } ) ,
834837 false ,
838+ false ,
835839 ) ;
836840 expect ( mockPrintGitignoreWarning ) . toHaveBeenCalled ( ) ;
837841 } ) ;
0 commit comments