@@ -1205,8 +1205,9 @@ describe('UserManagement', () => {
12051205 describe ( 'getPasswordReset' , ( ) => {
12061206 it ( 'sends a Get PaswordReset request' , async ( ) => {
12071207 fetchOnce ( passwordResetFixture ) ;
1208- const passwordReset =
1209- await workos . userManagement . getPasswordReset ( passwordResetId ) ;
1208+ const passwordReset = await workos . userManagement . getPasswordReset (
1209+ passwordResetId ,
1210+ ) ;
12101211 expect ( fetchURL ( ) ) . toContain (
12111212 `/user_management/password_reset/${ passwordResetId } ` ,
12121213 ) ;
@@ -1694,8 +1695,9 @@ describe('UserManagement', () => {
16941695 describe ( 'getInvitation' , ( ) => {
16951696 it ( 'sends a Get Invitation request' , async ( ) => {
16961697 fetchOnce ( invitationFixture ) ;
1697- const invitation =
1698- await workos . userManagement . getInvitation ( invitationId ) ;
1698+ const invitation = await workos . userManagement . getInvitation (
1699+ invitationId ,
1700+ ) ;
16991701 expect ( fetchURL ( ) ) . toContain (
17001702 `/user_management/invitations/${ invitationId } ` ,
17011703 ) ;
@@ -1709,8 +1711,9 @@ describe('UserManagement', () => {
17091711 describe ( 'findInvitationByToken' , ( ) => {
17101712 it ( 'sends a find invitation by token request' , async ( ) => {
17111713 fetchOnce ( invitationFixture ) ;
1712- const invitation =
1713- await workos . userManagement . findInvitationByToken ( invitationToken ) ;
1714+ const invitation = await workos . userManagement . findInvitationByToken (
1715+ invitationToken ,
1716+ ) ;
17141717 expect ( fetchURL ( ) ) . toContain (
17151718 `/user_management/invitations/by_token/${ invitationToken } ` ,
17161719 ) ;
@@ -1809,8 +1812,9 @@ describe('UserManagement', () => {
18091812 accepted_user_id : 'user_01HGK4K4PXNSG85RNNV0GXYP5W' ,
18101813 } ) ;
18111814
1812- const response =
1813- await workos . userManagement . acceptInvitation ( invitationId ) ;
1815+ const response = await workos . userManagement . acceptInvitation (
1816+ invitationId ,
1817+ ) ;
18141818
18151819 expect ( fetchURL ( ) ) . toContain (
18161820 `/user_management/invitations/${ invitationId } /accept` ,
@@ -1829,8 +1833,9 @@ describe('UserManagement', () => {
18291833 const invitationId = 'invitation_01H5JQDV7R7ATEYZDEG0W5PRYS' ;
18301834 fetchOnce ( invitationFixture ) ;
18311835
1832- const response =
1833- await workos . userManagement . revokeInvitation ( invitationId ) ;
1836+ const response = await workos . userManagement . revokeInvitation (
1837+ invitationId ,
1838+ ) ;
18341839
18351840 expect ( fetchURL ( ) ) . toContain (
18361841 `/user_management/invitations/${ invitationId } /revoke` ,
0 commit comments