verdnatura-chat/e2e/data.js

11 lines
331 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://unstable.rocket.chat',
alternateServer: 'https://stable.rocket.chat',
user: `user${ value }`,
password: `password${ value }`,
email: `detoxrn+${ value }@rocket.chat`,
random: value
}
module.exports = data;