import React from 'react'; import { mount } from 'enzyme'; import { sleep } from '../../../tests/utils'; import BackTop from '..'; describe('BackTop', () => { it('should scroll to top after click it', async () => { const wrapper = mount(); const scrollToSpy = jest.spyOn(window, 'scrollTo').mockImplementation((x, y) => { window.scrollY = y; window.pageYOffset = y; }); window.scrollTo(0, 400); // trigger scroll manually wrapper.instance().handleScroll(); wrapper.find('.ant-back-top').simulate('click'); await sleep(500); expect(window.pageYOffset).toBe(0); scrollToSpy.mockRestore(); }); });