vn-verdnaturachat/e2e/data.js

14 lines
482 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 = {
2019-01-29 19:52:56 +00:00
server: 'http://localhost:3000',
alternateServer: 'https://unstable.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',
2019-02-07 15:48:10 +00:00
alternateUserTOTPSecret: 'KESVIUCQMZWEYNBMJJAUW4LYKRBVWYZ7HBWTIWDPIAZUOURTF4WA',
email: `diego.mello+e2e${ value }@rocket.chat`,
2018-05-23 13:39:18 +00:00
random: value
}
module.exports = data;