You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/back-top/__tests__/index.test.js

20 lines
624 B

import { mount } from '@vue/test-utils';
import BackTop from '..';
describe('BackTop', () => {
6 years ago
it('should scroll to top after click it', async () => {
const wrapper = mount(BackTop, {
propsData: {
visibilityHeight: -1,
},
});
document.documentElement.scrollTop = 400;
// trigger scroll manually
wrapper.vm.handleScroll();
await new Promise(resolve => setTimeout(resolve, 0));
wrapper.find('.ant-back-top').trigger('click');
await new Promise(resolve => setTimeout(resolve, 1000));
expect(Math.abs(Math.round(document.documentElement.scrollTop))).toBe(0);
});
});