You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just spent ages debugging why our tests were breaking when using DataLoader and eventually discovered that since we were using jest.useFakeTimers() it was never resolving the batch.
Would be good to have some kind of warning about this in the readme.
The text was updated successfully, but these errors were encountered:
jest.useFakeTimers({ advanceTimers: true });
// OR
jest.useFakeTimers({ doNotFake: ["nextTick"] }); // if you really don't want process.nextTick to be monkey patched
because dataloader uses process.nextTick (if in node)
however, I still haven't figured out how to advance the timers properly to test the dataloader itself
Just spent ages debugging why our tests were breaking when using
DataLoader
and eventually discovered that since we were usingjest.useFakeTimers()
it was never resolving the batch.Would be good to have some kind of warning about this in the readme.
The text was updated successfully, but these errors were encountered: