Change email domain for users created by e2e to example.com (#7911)

This commit is contained in:
Ardit Domi 2022-10-20 11:58:28 +01:00 committed by GitHub
parent 1a76776e65
commit b64d1583e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ if (LOG) {
module.exports = {
projectName: 'adf',
emailDomain: 'example.net',
emailDomain: 'example.com',
appConfig: appConfig,

View File

@ -33,7 +33,7 @@ export class UserModel {
id: number;
constructor(details: any = {}) {
const EMAIL_DOMAIN = browser.params?.testConfig?.emailDomain ? browser.params.testConfig.emailDomain : 'example.net';
const EMAIL_DOMAIN = browser.params?.testConfig?.emailDomain ? browser.params.testConfig.emailDomain : 'example.com';
this.firstName = details.firstName ? details.firstName : this.firstName;
this.lastName = details.lastName ? details.lastName : this.lastName;