mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
a711cf4039
* test(getScroll): When window is undef * test: document -> null * test: mock
59 lines
1.7 KiB
TypeScript
59 lines
1.7 KiB
TypeScript
import getScroll from '../getScroll';
|
|
|
|
describe('getScroll', () => {
|
|
it('getScroll target null', () => {
|
|
expect(getScroll(null)).toBe(0);
|
|
});
|
|
|
|
it('getScroll window', () => {
|
|
const scrollToSpy = jest.spyOn(window, 'scrollTo').mockImplementation((x, y) => {
|
|
window.pageXOffset = x;
|
|
window.pageYOffset = y;
|
|
});
|
|
window.scrollTo(0, 400);
|
|
expect(getScroll(window)).toBe(400);
|
|
scrollToSpy.mockRestore();
|
|
});
|
|
|
|
it('getScroll document', () => {
|
|
const scrollToSpy = jest.spyOn(window, 'scrollTo').mockImplementation((x, y) => {
|
|
document.documentElement.scrollLeft = x;
|
|
document.documentElement.scrollTop = y;
|
|
});
|
|
window.scrollTo(0, 400);
|
|
expect(getScroll(document)).toBe(400);
|
|
scrollToSpy.mockRestore();
|
|
});
|
|
|
|
it('getScroll div', () => {
|
|
const div = document.createElement('div');
|
|
const scrollToSpy = jest.spyOn(window, 'scrollTo').mockImplementation((x, y) => {
|
|
div.scrollLeft = x;
|
|
div.scrollTop = y;
|
|
});
|
|
window.scrollTo(0, 400);
|
|
expect(getScroll(div)).toBe(400);
|
|
scrollToSpy.mockRestore();
|
|
});
|
|
|
|
it('getScroll documentElement', () => {
|
|
const div: any = {};
|
|
const scrollToSpy = jest.spyOn(window, 'scrollTo').mockImplementation((x, y) => {
|
|
div.scrollLeft = null;
|
|
div.scrollTop = null;
|
|
div.documentElement = {};
|
|
div.documentElement.scrollLeft = x;
|
|
div.documentElement.scrollTop = y;
|
|
});
|
|
window.scrollTo(0, 400);
|
|
expect(getScroll(div)).toBe(400);
|
|
scrollToSpy.mockRestore();
|
|
});
|
|
|
|
it('When window is undef, getScroll value is zero', () => {
|
|
const spy = jest.spyOn(global, 'window', 'get').mockImplementation(() => undefined as any);
|
|
expect(getScroll(null)).toBe(0);
|
|
spy.mockRestore();
|
|
});
|
|
});
|