Skip to content

Commit

Permalink
fixup! test(e2e): generate shorter random user names
Browse files Browse the repository at this point in the history
  • Loading branch information
dhhyi committed May 24, 2020
1 parent 930df01 commit 612a876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/cypress/integration/pages/account/registration.page.ts
Expand Up @@ -35,7 +35,7 @@ export const sensibleDefaults: Partial<Registration> = {
};

export function randomUserName() {
return `u${Math.floor(Math.random() * 1000)}@t.de`;
return `u${Math.floor(Math.random() * 10000)}@t.de`;
}

export class RegistrationPage {
Expand Down

0 comments on commit 612a876

Please sign in to comment.