rimus_cx

Factory Example

Dec 20th, 2021
967
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class UserFactory {
  2.  
  3.   static getDefaultUser() {
  4.     return {
  5.       username: '[email protected]',
  6.       password: 'ololo123'
  7.     }
  8.   }
  9.  
  10.   static getInvalidUser() {
  11.     return {
  12.       username: 'Vasya_Pupkin',
  13.       password: '123456'
  14.     }
  15.   }
  16. }
  17.  
  18. module.exports = UserFactory;
Advertisement
Add Comment
Please, Sign In to add comment