We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
fdir.sync
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
No branches or pull requests
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:
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?The text was updated successfully, but these errors were encountered: