@@ -592,26 +592,6 @@ describe('CodeEngineV2_integration', () => {
592
592
expect ( res . result ) . toBeDefined ( ) ;
593
593
} ) ;
594
594
595
- test ( 'listBindings()' , async ( ) => {
596
- const params = {
597
- projectId : e2eTestProjectId ,
598
- limit : 100 ,
599
- } ;
600
-
601
- const allResults = [ ] ;
602
- try {
603
- const pager = new CodeEngineV2 . BindingsPager ( codeEngineService , params ) ;
604
- while ( pager . hasNext ( ) ) {
605
- const nextPage = await pager . getNext ( ) ;
606
- expect ( nextPage ) . not . toBeNull ( ) ;
607
- allResults . push ( ...nextPage ) ;
608
- }
609
- console . log ( JSON . stringify ( allResults , null , 2 ) ) ;
610
- } catch ( err ) {
611
- console . warn ( err ) ;
612
- }
613
- } ) ;
614
-
615
595
test ( 'createServiceAccessSecret' , async ( ) => {
616
596
const params = {
617
597
projectId : e2eTestProjectId ,
@@ -670,6 +650,26 @@ describe('CodeEngineV2_integration', () => {
670
650
}
671
651
} ) ;
672
652
653
+ test ( 'listBindings()' , async ( ) => {
654
+ const params = {
655
+ projectId : e2eTestProjectId ,
656
+ limit : 100 ,
657
+ } ;
658
+
659
+ const allResults = [ ] ;
660
+ try {
661
+ const pager = new CodeEngineV2 . BindingsPager ( codeEngineService , params ) ;
662
+ while ( pager . hasNext ( ) ) {
663
+ const nextPage = await pager . getNext ( ) ;
664
+ expect ( nextPage ) . not . toBeNull ( ) ;
665
+ allResults . push ( ...nextPage ) ;
666
+ }
667
+ console . log ( JSON . stringify ( allResults , null , 2 ) ) ;
668
+ } catch ( err ) {
669
+ console . warn ( err ) ;
670
+ }
671
+ } ) ;
672
+
673
673
test ( 'deleteBinding()' , async ( ) => {
674
674
const params = {
675
675
projectId : e2eTestProjectId ,
0 commit comments