File tree Expand file tree Collapse file tree
integration-tests/access-control/member Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ const tests = () => {
5050 const deletionResult = await runCommand < { result : string } > ( `access-control member owner delete --itwin-id ${ iTwinId } --member-id ${ joinedUser ?. id } ` ) ;
5151 expect ( deletionResult . result ) . to . not . be . undefined ;
5252 expect ( deletionResult . result ! . result ) . to . be . equal ( "deleted" ) ;
53- } ) ;
53+ } ) . timeout ( 120 * 1000 ) ;
5454
5555 it ( 'Should list owners of an iTwin' , async ( ) => {
5656 const owners = await runCommand < groupMember [ ] > ( `access-control member owner list --itwin-id ${ iTwinId } ` ) ;
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ const tests = () => {
5959 const deletionResult = await runCommand < { result : string } > ( `access-control member user delete --itwin-id ${ iTwinId } --member-id ${ joinedUser ?. id } ` ) ;
6060 expect ( deletionResult . result ) . to . not . be . undefined ;
6161 expect ( deletionResult . result ! . result ) . to . be . equal ( "deleted" ) ;
62- } ) ;
62+ } ) . timeout ( 120 * 1000 ) ;
6363
6464 it ( 'Should display owner info of an iTwin in member info' , async ( ) => {
6565 const userInfo = await runCommand < User > ( `user me` ) ;
You can’t perform that action at this time.
0 commit comments