I'm using faker as putty and tests for Cypress.
But it is always returning the same data in different tests, it randomizes the words but in the next test it returns them
const Nome_Empresa = faker.random.word() + ' LTDA';
const Nome_Fantasia = faker.company.name();
const Cnpj_Empresa = faker.random.numeric(14, { bannedDigits: ['0'] })
const Hora_Empresa = faker.random.numeric(4, { bannedDigits: ['0'] })
EXAMPLE : const Nome_Fantasia = faker.company.name();
Here for example, it always creates the name of a random company, however if I use it in another Cypress "IT[]", it creates the SAME name, causing the test to fail.