@@ -294,12 +294,14 @@ describe('runInCI', () => {
294
294
args : [ 'print-config' , expect . stringMatching ( / ^ - - o u t p u t = .* \. j s o n $ / ) ] ,
295
295
cwd : workDir ,
296
296
observer : expectedObserver ,
297
+ verbose : false ,
297
298
} satisfies utils . ProcessConfig ) ;
298
299
expect ( utils . executeProcess ) . toHaveBeenNthCalledWith ( 2 , {
299
300
command : options . bin ,
300
301
args : [ ] ,
301
302
cwd : workDir ,
302
303
observer : expectedObserver ,
304
+ verbose : false ,
303
305
} satisfies utils . ProcessConfig ) ;
304
306
305
307
expect ( logger . error ) . not . toHaveBeenCalled ( ) ;
@@ -372,30 +374,35 @@ describe('runInCI', () => {
372
374
args : [ 'print-config' , expect . stringMatching ( / ^ - - o u t p u t = .* \. j s o n $ / ) ] ,
373
375
cwd : workDir ,
374
376
observer : expectedObserver ,
377
+ verbose : false ,
375
378
} satisfies utils . ProcessConfig ) ;
376
379
expect ( utils . executeProcess ) . toHaveBeenNthCalledWith ( 2 , {
377
380
command : options . bin ,
378
381
args : [ ] ,
379
382
cwd : workDir ,
380
383
observer : expectedObserver ,
384
+ verbose : false ,
381
385
} satisfies utils . ProcessConfig ) ;
382
386
expect ( utils . executeProcess ) . toHaveBeenNthCalledWith ( 3 , {
383
387
command : options . bin ,
384
388
args : [ 'print-config' , expect . stringMatching ( / ^ - - o u t p u t = .* \. j s o n $ / ) ] ,
385
389
cwd : workDir ,
386
390
observer : expectedObserver ,
391
+ verbose : false ,
387
392
} satisfies utils . ProcessConfig ) ;
388
393
expect ( utils . executeProcess ) . toHaveBeenNthCalledWith ( 4 , {
389
394
command : options . bin ,
390
395
args : [ ] ,
391
396
cwd : workDir ,
392
397
observer : expectedObserver ,
398
+ verbose : false ,
393
399
} satisfies utils . ProcessConfig ) ;
394
400
expect ( utils . executeProcess ) . toHaveBeenNthCalledWith ( 5 , {
395
401
command : options . bin ,
396
402
args : [ 'compare' ] ,
397
403
cwd : workDir ,
398
404
observer : expectedObserver ,
405
+ verbose : false ,
399
406
} satisfies utils . ProcessConfig ) ;
400
407
401
408
expect ( logger . error ) . not . toHaveBeenCalled ( ) ;
@@ -450,18 +457,21 @@ describe('runInCI', () => {
450
457
args : [ 'print-config' , expect . stringMatching ( / ^ - - o u t p u t = .* \. j s o n $ / ) ] ,
451
458
cwd : workDir ,
452
459
observer : expectedObserver ,
460
+ verbose : false ,
453
461
} satisfies utils . ProcessConfig ) ;
454
462
expect ( utils . executeProcess ) . toHaveBeenNthCalledWith ( 2 , {
455
463
command : options . bin ,
456
464
args : [ ] ,
457
465
cwd : workDir ,
458
466
observer : expectedObserver ,
467
+ verbose : false ,
459
468
} satisfies utils . ProcessConfig ) ;
460
469
expect ( utils . executeProcess ) . toHaveBeenNthCalledWith ( 3 , {
461
470
command : options . bin ,
462
471
args : [ 'compare' ] ,
463
472
cwd : workDir ,
464
473
observer : expectedObserver ,
474
+ verbose : false ,
465
475
} satisfies utils . ProcessConfig ) ;
466
476
467
477
expect ( logger . error ) . not . toHaveBeenCalled ( ) ;
@@ -521,18 +531,21 @@ describe('runInCI', () => {
521
531
args : [ 'print-config' , expect . stringMatching ( / ^ - - o u t p u t = .* \. j s o n $ / ) ] ,
522
532
cwd : workDir ,
523
533
observer : expectedObserver ,
534
+ verbose : false ,
524
535
} satisfies utils . ProcessConfig ) ;
525
536
expect ( utils . executeProcess ) . toHaveBeenNthCalledWith ( 2 , {
526
537
command : options . bin ,
527
538
args : [ ] ,
528
539
cwd : workDir ,
529
540
observer : expectedObserver ,
541
+ verbose : false ,
530
542
} satisfies utils . ProcessConfig ) ;
531
543
expect ( utils . executeProcess ) . toHaveBeenNthCalledWith ( 3 , {
532
544
command : options . bin ,
533
545
args : [ 'compare' ] ,
534
546
cwd : workDir ,
535
547
observer : expectedObserver ,
548
+ verbose : false ,
536
549
} satisfies utils . ProcessConfig ) ;
537
550
538
551
expect ( logger . error ) . not . toHaveBeenCalled ( ) ;
@@ -580,6 +593,7 @@ describe('runInCI', () => {
580
593
args : expect . arrayContaining ( [ 'compare' ] ) ,
581
594
cwd : workDir ,
582
595
observer : expectedObserver ,
596
+ verbose : false ,
583
597
} satisfies utils . ProcessConfig ) ;
584
598
} ) ;
585
599
} ) ;
@@ -714,12 +728,14 @@ describe('runInCI', () => {
714
728
] ,
715
729
cwd : expect . stringContaining ( workDir ) ,
716
730
observer : expectedObserver ,
731
+ verbose : false ,
717
732
} satisfies utils . ProcessConfig ) ;
718
733
expect ( utils . executeProcess ) . toHaveBeenCalledWith ( {
719
734
command : runMany ,
720
735
args : [ ] ,
721
736
cwd : expect . stringContaining ( workDir ) ,
722
737
observer : expectedObserver ,
738
+ verbose : false ,
723
739
} satisfies utils . ProcessConfig ) ;
724
740
725
741
expect ( logger . error ) . not . toHaveBeenCalled ( ) ;
@@ -789,6 +805,7 @@ describe('runInCI', () => {
789
805
args : [ ] ,
790
806
cwd : expect . stringContaining ( workDir ) ,
791
807
observer : expectedObserver ,
808
+ verbose : false ,
792
809
} satisfies utils . ProcessConfig ) ;
793
810
794
811
expect ( logger . error ) . not . toHaveBeenCalled ( ) ;
@@ -952,18 +969,21 @@ describe('runInCI', () => {
952
969
] ,
953
970
cwd : expect . stringContaining ( workDir ) ,
954
971
observer : expectedObserver ,
972
+ verbose : false ,
955
973
} satisfies utils . ProcessConfig ) ;
956
974
expect ( utils . executeProcess ) . toHaveBeenCalledWith ( {
957
975
command : runMany ,
958
976
args : [ ] ,
959
977
cwd : expect . stringContaining ( workDir ) ,
960
978
observer : expectedObserver ,
979
+ verbose : false ,
961
980
} satisfies utils . ProcessConfig ) ;
962
981
expect ( utils . executeProcess ) . toHaveBeenCalledWith ( {
963
982
command : runMany ,
964
983
args : [ 'compare' ] ,
965
984
cwd : expect . stringContaining ( workDir ) ,
966
985
observer : expectedObserver ,
986
+ verbose : false ,
967
987
} satisfies utils . ProcessConfig ) ;
968
988
expect ( utils . executeProcess ) . toHaveBeenCalledWith ( {
969
989
command : run ,
@@ -983,6 +1003,7 @@ describe('runInCI', () => {
983
1003
] ,
984
1004
cwd : expect . stringContaining ( workDir ) ,
985
1005
observer : expectedObserver ,
1006
+ verbose : false ,
986
1007
} satisfies utils . ProcessConfig ) ;
987
1008
988
1009
expect ( logger . error ) . not . toHaveBeenCalled ( ) ;
@@ -1058,12 +1079,14 @@ describe('runInCI', () => {
1058
1079
args : [ ] ,
1059
1080
cwd : expect . stringContaining ( workDir ) ,
1060
1081
observer : expectedObserver ,
1082
+ verbose : false ,
1061
1083
} satisfies utils . ProcessConfig ) ;
1062
1084
expect ( utils . executeProcess ) . toHaveBeenCalledWith ( {
1063
1085
command : runMany ,
1064
1086
args : [ 'compare' ] ,
1065
1087
cwd : expect . stringContaining ( workDir ) ,
1066
1088
observer : expectedObserver ,
1089
+ verbose : false ,
1067
1090
} satisfies utils . ProcessConfig ) ;
1068
1091
expect ( utils . executeProcess ) . toHaveBeenCalledWith ( {
1069
1092
command : run ,
@@ -1083,6 +1106,7 @@ describe('runInCI', () => {
1083
1106
] ,
1084
1107
cwd : expect . stringContaining ( workDir ) ,
1085
1108
observer : expectedObserver ,
1109
+ verbose : false ,
1086
1110
} satisfies utils . ProcessConfig ) ;
1087
1111
expect ( utils . executeProcess ) . not . toHaveBeenCalledWith (
1088
1112
expect . objectContaining ( {
@@ -1138,18 +1162,21 @@ describe('runInCI', () => {
1138
1162
args : expect . any ( Array ) ,
1139
1163
cwd : expect . stringContaining ( workDir ) ,
1140
1164
observer : expectedObserver ,
1165
+ verbose : false ,
1141
1166
} satisfies utils . ProcessConfig ) ;
1142
1167
expect ( utils . executeProcess ) . toHaveBeenCalledWith ( {
1143
1168
command : runMany ,
1144
1169
args : expect . arrayContaining ( [ 'compare' ] ) ,
1145
1170
cwd : expect . stringContaining ( workDir ) ,
1146
1171
observer : expectedObserver ,
1172
+ verbose : false ,
1147
1173
} satisfies utils . ProcessConfig ) ;
1148
1174
expect ( utils . executeProcess ) . toHaveBeenCalledWith ( {
1149
1175
command : run ,
1150
1176
args : expect . arrayContaining ( [ 'merge-diffs' ] ) ,
1151
1177
cwd : expect . stringContaining ( workDir ) ,
1152
1178
observer : expectedObserver ,
1179
+ verbose : false ,
1153
1180
} satisfies utils . ProcessConfig ) ;
1154
1181
} ) ;
1155
1182
} ) ;
@@ -1242,12 +1269,14 @@ describe('runInCI', () => {
1242
1269
args : [ 'print-config' , expect . stringMatching ( / ^ - - o u t p u t = .* \. j s o n $ / ) ] ,
1243
1270
cwd : expect . stringContaining ( workDir ) ,
1244
1271
observer : expectedObserver ,
1272
+ verbose : false ,
1245
1273
} satisfies utils . ProcessConfig ) ;
1246
1274
expect ( utils . executeProcess ) . toHaveBeenCalledWith ( {
1247
1275
command : options . bin ,
1248
1276
args : [ ] ,
1249
1277
cwd : expect . stringContaining ( workDir ) ,
1250
1278
observer : expectedObserver ,
1279
+ verbose : false ,
1251
1280
} satisfies utils . ProcessConfig ) ;
1252
1281
1253
1282
expect ( logger . error ) . not . toHaveBeenCalled ( ) ;
@@ -1411,18 +1440,21 @@ describe('runInCI', () => {
1411
1440
args : [ 'print-config' , expect . stringMatching ( / ^ - - o u t p u t = .* \. j s o n $ / ) ] ,
1412
1441
cwd : expect . stringContaining ( workDir ) ,
1413
1442
observer : expectedObserver ,
1443
+ verbose : false ,
1414
1444
} satisfies utils . ProcessConfig ) ;
1415
1445
expect ( utils . executeProcess ) . toHaveBeenCalledWith ( {
1416
1446
command : options . bin ,
1417
1447
args : [ ] ,
1418
1448
cwd : expect . stringContaining ( workDir ) ,
1419
1449
observer : expectedObserver ,
1450
+ verbose : false ,
1420
1451
} satisfies utils . ProcessConfig ) ;
1421
1452
expect ( utils . executeProcess ) . toHaveBeenCalledWith ( {
1422
1453
command : options . bin ,
1423
1454
args : [ 'compare' ] ,
1424
1455
cwd : expect . stringContaining ( workDir ) ,
1425
1456
observer : expectedObserver ,
1457
+ verbose : false ,
1426
1458
} satisfies utils . ProcessConfig ) ;
1427
1459
expect ( utils . executeProcess ) . toHaveBeenCalledWith ( {
1428
1460
command : options . bin ,
@@ -1442,6 +1474,7 @@ describe('runInCI', () => {
1442
1474
] ,
1443
1475
cwd : expect . stringContaining ( workDir ) ,
1444
1476
observer : expectedObserver ,
1477
+ verbose : false ,
1445
1478
} satisfies utils . ProcessConfig ) ;
1446
1479
1447
1480
expect ( logger . error ) . not . toHaveBeenCalled ( ) ;
0 commit comments