Ideas for mocking
IanVS opened this issue · 1 comments
IanVS commented
Hi, I'm attempting to convert from globby to fdir, and I'm curious if you have any ideas for a good way to mock fdir returns. Previously, we had:
(globby.sync as jest.Mock).mockReturnValueOnce([]);
But, since fdir uses a fluent api, I can't just mock fdir.sync
. Is this something you've run into before? And if so, how did you handle it?
IanVS commented
I think I figured out something that works:
const syncMock = jest.fn();
const crawlerMock = jest.fn().mockImplementation(() => {
return {
sync: syncMock,
};
});
jest.spyOn(fdir.prototype, 'crawl').mockImplementation(crawlerMock);
Happy to hear any other suggestions, but this seems to get me what I want.