import test from '@playwright/test'; import { requestPatch } from '../../helpers/request'; const { expect } = test; test.describe('Users - PATCH /users/:id/enable', () => { test('should return 404 for non-existing user', async () => { const res = await requestPatch('/users/non-existing-id/enable'); expect([404, 400, 500]).toContain(res.status); }); });