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 badges2 Answers
Reset to default 5in 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