2018-05-23 13:39:18 +00:00
|
|
|
const random = require('./helpers/random');
|
|
|
|
const value = random(20);
|
|
|
|
const data = {
|
2019-06-03 19:20:36 +00:00
|
|
|
server: 'https://ilarion.rocket.chat',
|
2019-03-01 14:40:22 +00:00
|
|
|
alternateServer: 'https://stable.rocket.chat',
|
2018-05-23 13:39:18 +00:00
|
|
|
user: `user${ value }`,
|
|
|
|
password: `password${ value }`,
|
2019-02-07 15:48:10 +00:00
|
|
|
alternateUser: 'detoxrn',
|
2018-05-24 20:17:45 +00:00
|
|
|
alternateUserPassword: '123',
|
2019-06-03 19:20:36 +00:00
|
|
|
alternateUserTOTPSecret: 'NFXHKKC6FJXESL25HBYTYNSFKR4WCTSXFRKUUVKEOBBC6I3JKI7A',
|
|
|
|
existingEmail: 'diego.mello@rocket.chat',
|
|
|
|
existingName: 'diego.mello',
|
2018-08-10 17:26:36 +00:00
|
|
|
email: `diego.mello+e2e${ value }@rocket.chat`,
|
2018-05-23 13:39:18 +00:00
|
|
|
random: value
|
|
|
|
}
|
2019-05-28 13:03:08 +00:00
|
|
|
module.exports = data;
|