Rocket.Chat.ReactNative/e2e/data.js

17 lines
566 B
JavaScript
Raw Normal View History

2018-05-23 13:39:18 +00:00
const random = require('./helpers/random');
const value = random(20);
const data = {
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',
alternateUserPassword: '123',
alternateUserTOTPSecret: 'NFXHKKC6FJXESL25HBYTYNSFKR4WCTSXFRKUUVKEOBBC6I3JKI7A',
existingEmail: 'diego.mello@rocket.chat',
existingName: 'diego.mello',
email: `diego.mello+e2e${ value }@rocket.chat`,
2018-05-23 13:39:18 +00:00
random: value
}
module.exports = data;