web-dev-qa-db-ja.com

reduxで非同期アクションクリエーターをテストし、リアクションすると、未定義のプロパティ '.then'を読み取ることができません

反応、redux-mock-store、およびreduxを使用してテストを作成しようとしていますが、エラーが発生し続けます。おそらく、私のPromiseがまだ解決されていないのでしょうか?

fetchListing()アクションクリエーターは、devとproductionで試してみると実際に機能しますが、テストに合格するのに問題があります。

エラーメッセージ

(node:19143) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 3): SyntaxError
(node:19143) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
 FAIL  src/actions/__tests__/action.test.js
  ● async actions › creates "FETCH_LISTINGS" when fetching listing has been done

    TypeError: Cannot read property 'then' of undefined

      at Object.<anonymous> (src/actions/__tests__/action.test.js:44:51)
          at Promise (<anonymous>)
      at Promise.resolve.then.el (node_modules/p-map/index.js:42:16)
          at <anonymous>
      at process._tickCallback (internal/process/next_tick.js:169:7)

  async actions
    ✕ creates "FETCH_LISTINGS" when fetching listing has been done (10ms)

action/index.js

// actions/index.js
import axios from 'axios';

import { FETCH_LISTINGS } from './types';

export function fetchListings() {

  const request = axios.get('/5/index.cfm?event=stream:listings');

  return (dispatch) => {
    request.then(( { data } ) => {
      dispatch({ type: FETCH_LISTINGS, payload: data });
    });
  }
};

action.test.js

// actions/__test__/action.test.js

import configureMockStore from 'redux-mock-store';
import thunk from 'redux-thunk';
import { applyMiddleware } from 'redux';
import nock from 'nock';
import expect from 'expect';

import * as actions from '../index';
import * as types from '../types';


const middlewares = [ thunk ];
const mockStore = configureMockStore(middlewares);

describe('async actions', () => {
  afterEach(() => {
    nock.cleanAll()
})


it('creates "FETCH_LISTINGS" when fetching listing has been done', () => {
  nock('http://example.com/')
    .get('/listings')
    .reply(200, { body: { listings: [{ 'corpo_id': 5629, id: 1382796, name: 'masm' }] } })

    const expectedActions = [
      { type: types.FETCH_LISTINGS }, { body: { listings: [{ 'corpo_id': 5629, id: 1382796, name: 'masm' }] }}
    ]

    const store = mockStore({ listings: [] })

    return store.dispatch(actions.fetchListings()).then((data) => {
      expect(store.getActions()).toEqual(expectedActions)
    })
  })
})
17
intercoder

store.dispatch(actions.fetchListings())undefinedを返します。その上で.thenを呼び出すことはできません。

redux-thunk code を参照してください。返す関数を実行し、それを返します。 fetchListingsで返す関数は何も返しません。つまり、undefinedです。

試してみる

return (dispatch) => {
    return request.then( (data) => {
      dispatch({ type: FETCH_LISTINGS, payload: data });
    });
  }

その後、まだ別の問題が発生します。 then内には何も返さず、ディスパッチするだけです。つまり、次のthenundefined引数を取得します

16
Lewis Diamond

また、これが古いスレッドであることも知っていますが、サンクの内部で非同期アクションを返すことを確認する必要があります。

私のサンクで私はする必要がありました:

return fetch()

非同期アクションとそれは働いた

7
Box and Cox

これは古いスレッドです。しかし、問題はアクション作成者が非同期ではないことだと思います。

試してください:

export async function fetchListings() {
  const request = axios.get('/5/index.cfm?event=stream:listings');
  return (dispatch) => {
    request.then(( { data } ) => {
      dispatch({ type: FETCH_LISTINGS, payload: data });
    });
  }
}
2
Scott Dakers

アクションの作成者は、次のようにpromiseを返す必要があります。

// actions/index.js
import axios from 'axios';

import { FETCH_LISTINGS } from './types';

export function fetchListings() {
  return (dispatch) => {
    return axios.get('/5/index.cfm?event=stream:listings')
    .then(( { data } ) => {
      dispatch({ type: FETCH_LISTINGS, payload: data });
    });
  }
};
1
AV Paul