chore: Remove redundant only flag for tests

This commit is contained in:
Faruk AYDIN
2024-09-12 13:01:49 +03:00
parent 32d39b88bd
commit 8c692758ae

View File

@@ -31,7 +31,7 @@ describe('PATCH /api/v1/users/:userId/password', () => {
expect(response.body).toStrictEqual(expectedPayload);
});
it.only('should return HTTP 422 with invalid current password', async () => {
it('should return HTTP 422 with invalid current password', async () => {
const userData = {
currentPassword: '',
password: 'new-password',