diff --git a/apps/meteor/tests/data/livechat/units.ts b/apps/meteor/tests/data/livechat/units.ts index 4ec1265797a41..98560713cd496 100644 --- a/apps/meteor/tests/data/livechat/units.ts +++ b/apps/meteor/tests/data/livechat/units.ts @@ -42,7 +42,10 @@ export const createUnit = async ( method: 'livechat:saveUnit', params: [ null, - { name: name || faker.person.firstName(), visibility: faker.helpers.arrayElement(['public', 'private']) }, + { + name: name || `${faker.person.firstName()} ${faker.string.uuid()}`, + visibility: faker.helpers.arrayElement(['public', 'private']), + }, [{ monitorId, username }, ...extraMonitor], departmentIds.map((departmentId) => ({ departmentId })), ],