diff --git a/src/presentation/http/router/join.test.ts b/src/presentation/http/router/join.test.ts index fd1e5f1c..279bcc36 100644 --- a/src/presentation/http/router/join.test.ts +++ b/src/presentation/http/router/join.test.ts @@ -42,6 +42,7 @@ describe('Join API', () => { headers: { authorization: `Bearer ${accessToken}`, }, + body: { invitationHash }, url: `/join/${invitationHash}`, }); @@ -61,6 +62,7 @@ describe('Join API', () => { headers: { authorization: `Bearer ${accessToken}`, }, + body: { hash }, url: `/join/${hash}`, }); @@ -107,6 +109,7 @@ describe('Join API', () => { headers: { authorization: `Bearer ${accessToken}`, }, + body: { invitationHash }, url: `/join/${invitationHash}`, });