David Gonzalez

Results 1 comments of David Gonzalez

Have you tried adding this at the beginning of your tests ``` jest.useFakeTimers(); beforeEach(() => { jest.spyOn(window, 'requestAnimationFrame').mockImplementation((callback) => { callback(1); return 1; }); }); afterEach(() => { (window.requestAnimationFrame as...