onmyway133 / notes

:notebook_with_decorative_cover: Issues and solutions I found during development, mostly iOS
https://onmyway133.com/
MIT License
63 stars 4 forks source link

jest useFakeTimers timeout #665

Open onmyway133 opened 9 months ago

onmyway133 commented 9 months ago

Check https://github.com/nock/nock/issues/2200#issuecomment-1699838032

https://github.com/testing-library/user-event/issues/833 might be your issue if you are using testing library user events. Took me forever to figure out but this eventually fixed it for me:

jest.useFakeTimers({ advanceTimers: true });