diff --git a/backend/tests/e2e/users.spec.ts b/backend/tests/e2e/users.spec.ts index c11026ba..c777ad74 100644 --- a/backend/tests/e2e/users.spec.ts +++ b/backend/tests/e2e/users.spec.ts @@ -42,7 +42,7 @@ describe('Authenticated Flows', () => { expect(getUsersResponse.body.length).toBeGreaterThan(0); }); - test.only('Get the user response', async () => { + test('Get the user response', async () => { const getUsersResponse = await request(USER_URL) .get('/') .set('Authorization', `Bearer ${token}`);