Rocket.Chat.ReactNative/e2e/data.js

14 lines
485 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://stable.rocket.chat',
alternateServer: 'https://unstable.rocket.chat',
2018-05-23 13:39:18 +00:00
user: `user${ value }`,
password: `password${ value }`,
alternateUser: 'detox',
alternateUserPassword: '123',
alternateUserTOTPSecret: 'HJGECLDOH5RCKJSWMREXAKKENVZXKOJ6I5ZTKPSRIEQWGOK5K5KA',
email: `diego.mello+e2e${ value }@rocket.chat`,
2018-05-23 13:39:18 +00:00
random: value
}
module.exports = data;