describe('selected_user_profile_reducer', () => {
  it('returns state is action is unsupported type', () => {
    expect(selectedUserProfileReducer(EMPTY_STATE, { type: 'LOGOUT_REQUEST' }))
      .toEqual(EMPTY_STATE);
  });