@@ -45,7 +45,7 @@ describe('UsersTab', () => {
4545 platformUtilsService . getProductInfo = async ( ) =>
4646 Promise . resolve ( getMockedProductInfo ( { isSmtpDefined : false } ) ) ;
4747
48- await render ( < UsersTab activeUser = { adminUser } /> , {
48+ await render ( < UsersTab activeUser = { adminUser } resourceId = 'org-id' /> , {
4949 services : { platformUtilsService, usersService } ,
5050 } ) ;
5151
@@ -58,7 +58,7 @@ describe('UsersTab', () => {
5858 platformUtilsService . getProductInfo = async ( ) =>
5959 Promise . resolve ( getMockedProductInfo ( { isSmtpDefined : true } ) ) ;
6060
61- await render ( < UsersTab activeUser = { adminUser } /> , {
61+ await render ( < UsersTab activeUser = { adminUser } resourceId = 'org-id' /> , {
6262 services : { platformUtilsService, usersService } ,
6363 } ) ;
6464
@@ -76,7 +76,7 @@ describe('UsersTab', () => {
7676 platformUtilsService . getProductInfo = async ( ) =>
7777 Promise . resolve ( getMockedProductInfo ( { isSmtpDefined : false } ) ) ;
7878
79- await render ( < UsersTab activeUser = { contributorUser } /> , {
79+ await render ( < UsersTab activeUser = { contributorUser } resourceId = 'org-id' /> , {
8080 services : { platformUtilsService, usersService } ,
8181 } ) ;
8282
@@ -89,7 +89,7 @@ describe('UsersTab', () => {
8989 platformUtilsService . getProductInfo = async ( ) =>
9090 Promise . resolve ( getMockedProductInfo ( { isSmtpDefined : true } ) ) ;
9191
92- await render ( < UsersTab activeUser = { contributorUser } /> , {
92+ await render ( < UsersTab activeUser = { contributorUser } resourceId = 'org-id' /> , {
9393 services : { platformUtilsService, usersService } ,
9494 } ) ;
9595
@@ -113,7 +113,7 @@ describe('UsersTab', () => {
113113 platformUtilsService . getProductInfo = async ( ) =>
114114 Promise . resolve ( getMockedProductInfo ( { isSmtpDefined : false } ) ) ;
115115
116- await render ( < UsersTab activeUser = { adminUser } /> , {
116+ await render ( < UsersTab activeUser = { adminUser } resourceId = 'org-id' /> , {
117117 services : { platformUtilsService, usersService } ,
118118 } ) ;
119119
@@ -131,7 +131,7 @@ describe('UsersTab', () => {
131131 platformUtilsService . getProductInfo = async ( ) =>
132132 Promise . resolve ( getMockedProductInfo ( { isSmtpDefined : true } ) ) ;
133133
134- await render ( < UsersTab activeUser = { contributorUser } /> , {
134+ await render ( < UsersTab activeUser = { contributorUser } resourceId = 'org-id' /> , {
135135 services : { platformUtilsService, usersService } ,
136136 } ) ;
137137
0 commit comments