最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Spy on Jest mock - Stack Overflow

programmeradmin1浏览0评论

I m trying to make a spy on a jest.mock, (I m not a big fan of unmock what you want, I prefer the "old school" way)

This way I m having the following test :

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();
            });
        });

And this is the code I want to test (that is not plete, test driven) :

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

My mock implementation of fetch (which in fact is node-fetch) is :

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

The mock works well, and it well replace the usual implementation.

My main question is, how can I spy on that mocked function ? I need to test that it has been called with the good parameters, and I absolutely dont know how to make that. In the test implementation there is a "???" and I don't know how to create the concerned spy.

Any idea ?

I m trying to make a spy on a jest.mock, (I m not a big fan of unmock what you want, I prefer the "old school" way)

This way I m having the following test :

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();
            });
        });

And this is the code I want to test (that is not plete, test driven) :

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

My mock implementation of fetch (which in fact is node-fetch) is :

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

The mock works well, and it well replace the usual implementation.

My main question is, how can I spy on that mocked function ? I need to test that it has been called with the good parameters, and I absolutely dont know how to make that. In the test implementation there is a "???" and I don't know how to create the concerned spy.

Any idea ?

Share Improve this question edited Dec 8, 2016 at 22:37 Rick Hanlon II 21.8k7 gold badges49 silver badges53 bronze badges asked Oct 18, 2016 at 6:56 mfrachetmfrachet 8,93217 gold badges60 silver badges113 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 5

in your mock implementation, you can do

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

Now in your test you need to do

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

hope this helps

The modern way for anybody still searching which works with inline mocks as well is just:

const nodeFetch = require("node-fetch")
const fetchSpy = jest.spyOn(nodeFetch, "fetch")
...
expect(fetchSpy).toHaveBeenCalledWith(...)

This way you don't have to create separate mocked implementations

发布评论

评论列表(0)

  1. 暂无评论