Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
fix: generation
Browse files Browse the repository at this point in the history
  • Loading branch information
nmashchenko committed Mar 9, 2024
1 parent da969bb commit 7a99515
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion server/test/user/users.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ describe('Get users (e2e)', () => {
const app = APP_URL;
const newUserPassword = `secret`;
const fullName = 'Slavik Ukraincev';
const username = faker.internet.userName().toLowerCase();
const username = faker.internet
.userName()
.toLowerCase()
.replace(/[^a-z0-9]/gi, '');
const country = 'Ukraine';
const speciality = 'Developer';
const focus = 'Backend Developer';
Expand Down

0 comments on commit 7a99515

Please sign in to comment.