@@ -592,26 +592,6 @@ describe('CodeEngineV2_integration', () => {
592592 expect ( res . result ) . toBeDefined ( ) ;
593593 } ) ;
594594
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-
615595 test ( 'createServiceAccessSecret' , async ( ) => {
616596 const params = {
617597 projectId : e2eTestProjectId ,
@@ -670,6 +650,26 @@ describe('CodeEngineV2_integration', () => {
670650 }
671651 } ) ;
672652
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+
673673 test ( 'deleteBinding()' , async ( ) => {
674674 const params = {
675675 projectId : e2eTestProjectId ,
0 commit comments