Skip to content
Snippets Groups Projects
fixture.js 845 B
Newer Older
  • Learn to ignore specific revisions
  • const TEST_USER = 'test-user'
    const TEST_PASSWORD = 'test-password'
    const TEST_SESSION_TOKEN = 'test-session-token'
    
      userId: 'test-user',
      firstName: 'test-first-name',
      lastName: 'test-last-name'
    }
    
    
      userId: 'another-user',
      firstName: 'another-first-name',
      lastName: 'another-last-name'
    }
    
    
      code: 'all-users-group',
    
      code: 'test-group',
    
      code: 'another-group',
    
    
    export default {
      TEST_USER,
      TEST_PASSWORD,
      TEST_SESSION_TOKEN,
      TEST_USER_DTO,
      ANOTHER_USER_DTO,
      ALL_USERS_GROUP_DTO,
      TEST_GROUP_DTO,
      ANOTHER_GROUP_DTO,
      object
    }