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