Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class UserFactory {
- static getDefaultUser() {
- return {
- password: 'ololo123'
- }
- }
- static getInvalidUser() {
- return {
- username: 'Vasya_Pupkin',
- password: '123456'
- }
- }
- }
- module.exports = UserFactory;
Advertisement
Add Comment
Please, Sign In to add comment