@@ -1248,8 +1248,9 @@ describe('UserManagement', () => {
12481248 describe ( 'getPasswordReset' , ( ) => {
12491249 it ( 'sends a Get PaswordReset request' , async ( ) => {
12501250 fetchOnce ( passwordResetFixture ) ;
1251- const passwordReset =
1252- await workos . userManagement . getPasswordReset ( passwordResetId ) ;
1251+ const passwordReset = await workos . userManagement . getPasswordReset (
1252+ passwordResetId ,
1253+ ) ;
12531254 expect ( fetchURL ( ) ) . toContain (
12541255 `/user_management/password_reset/${ passwordResetId } ` ,
12551256 ) ;
@@ -1737,8 +1738,9 @@ describe('UserManagement', () => {
17371738 describe ( 'getInvitation' , ( ) => {
17381739 it ( 'sends a Get Invitation request' , async ( ) => {
17391740 fetchOnce ( invitationFixture ) ;
1740- const invitation =
1741- await workos . userManagement . getInvitation ( invitationId ) ;
1741+ const invitation = await workos . userManagement . getInvitation (
1742+ invitationId ,
1743+ ) ;
17421744 expect ( fetchURL ( ) ) . toContain (
17431745 `/user_management/invitations/${ invitationId } ` ,
17441746 ) ;
@@ -1752,8 +1754,9 @@ describe('UserManagement', () => {
17521754 describe ( 'findInvitationByToken' , ( ) => {
17531755 it ( 'sends a find invitation by token request' , async ( ) => {
17541756 fetchOnce ( invitationFixture ) ;
1755- const invitation =
1756- await workos . userManagement . findInvitationByToken ( invitationToken ) ;
1757+ const invitation = await workos . userManagement . findInvitationByToken (
1758+ invitationToken ,
1759+ ) ;
17571760 expect ( fetchURL ( ) ) . toContain (
17581761 `/user_management/invitations/by_token/${ invitationToken } ` ,
17591762 ) ;
@@ -1852,8 +1855,9 @@ describe('UserManagement', () => {
18521855 accepted_user_id : 'user_01HGK4K4PXNSG85RNNV0GXYP5W' ,
18531856 } ) ;
18541857
1855- const response =
1856- await workos . userManagement . acceptInvitation ( invitationId ) ;
1858+ const response = await workos . userManagement . acceptInvitation (
1859+ invitationId ,
1860+ ) ;
18571861
18581862 expect ( fetchURL ( ) ) . toContain (
18591863 `/user_management/invitations/${ invitationId } /accept` ,
@@ -1872,8 +1876,9 @@ describe('UserManagement', () => {
18721876 const invitationId = 'invitation_01H5JQDV7R7ATEYZDEG0W5PRYS' ;
18731877 fetchOnce ( invitationFixture ) ;
18741878
1875- const response =
1876- await workos . userManagement . revokeInvitation ( invitationId ) ;
1879+ const response = await workos . userManagement . revokeInvitation (
1880+ invitationId ,
1881+ ) ;
18771882
18781883 expect ( fetchURL ( ) ) . toContain (
18791884 `/user_management/invitations/${ invitationId } /revoke` ,
0 commit comments