窥探Jest模拟

时间:2016-10-18 06:56:07

标签: javascript unit-testing reactjs jestjs

我试图在jest.mock上做一个间谍,(我不喜欢你想要的东西,我更喜欢“老派”的方式)

这样我就进行了以下测试:

jest.mock('node-fetch');
// ...
it('should have called the fetch function wih the good const parameter and slug', done => {
            const slug = 'slug';
            const stubDispatch = () => null;
            const dispatcher = fetchRemote(slug);
            dispatcher(stubDispatch).then(() => {
                expect(???).toBeCalledWith(Constants + slug);
                done();
            });
        });

这是我要测试的代码(不完整,测试驱动):

export const fetchRemote = slug => {
    return dispatch => {
        dispatch(loading());
        return fetch(Constants.URL + slug)
    };
};

我的fetch模拟实现(实际上是节点获取)是:

export default () => Promise.resolve({json: () => []});

模拟效果很好,它很好地取代了通常的实现。

我的主要问题是,我该如何监视这个模拟函数?我需要测试它已被调用好的参数,我绝对不知道如何做到这一点。在测试实现中有一个“???”我不知道如何创建有关的间谍。

有什么想法吗?

1 个答案:

答案 0 :(得分:5)

在你的模拟实现中,你可以做到

const fetch = jest.fn(() => Promise.resolve({json: () => []}));
module.exports = fetch;

现在你需要做测试

const fetchMock = require('node-fetch'); // this will get your mock implementation not the actual one
...
...
expect(fetchMock).toBeCalledWith(Constants + slug);

希望这会有所帮助