it('processes LOGOUT_REQUEST', () => {
    expect(loginReducer(LOGGED_IN_STATE, { type: 'LOGOUT_REQUEST' })).toEqual({
      authInfo: null,
      error: null,
      loading: true,