fix: Typo for register user tests

This commit is contained in:
Faruk AYDIN
2024-09-12 13:18:39 +03:00
parent 6ff6d0a7dc
commit bb76bfcd8b

View File

@@ -48,7 +48,7 @@ describe('POST /api/v1/users/register', () => {
.expect(404);
});
it('should return unprocessable entity respones with already used email', async () => {
it('should return unprocessable entity response with already used email', async () => {
await createRole({ name: 'User' });
await createUser({
email: 'registered@sample.com',