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.
57 lines
1.1 KiB
57 lines
1.1 KiB
5 years ago
|
import scrollTo from '../scrollTo';
|
||
|
|
||
|
describe('Test ScrollTo function', () => {
|
||
|
let dateNowMock;
|
||
|
|
||
|
beforeAll(() => {
|
||
|
jest.useFakeTimers();
|
||
|
});
|
||
|
|
||
|
afterAll(() => {
|
||
|
jest.useRealTimers();
|
||
|
});
|
||
|
|
||
|
beforeEach(() => {
|
||
|
dateNowMock = jest
|
||
|
.spyOn(Date, 'now')
|
||
|
.mockImplementationOnce(() => 0)
|
||
|
.mockImplementationOnce(() => 1000);
|
||
|
});
|
||
|
|
||
|
afterEach(() => {
|
||
|
dateNowMock.mockRestore();
|
||
|
});
|
||
|
|
||
|
it('test scrollTo', async () => {
|
||
|
const scrollToSpy = jest.spyOn(window, 'scrollTo').mockImplementation((x, y) => {
|
||
|
window.scrollY = y;
|
||
|
window.pageYOffset = y;
|
||
|
});
|
||
|
|
||
|
scrollTo(1000);
|
||
|
|
||
|
jest.runAllTimers();
|
||
|
expect(window.pageYOffset).toBe(1000);
|
||
|
|
||
|
scrollToSpy.mockRestore();
|
||
|
});
|
||
|
|
||
|
it('test callback - option', async () => {
|
||
|
const cbMock = jest.fn();
|
||
|
scrollTo(1000, {
|
||
|
callback: cbMock,
|
||
|
});
|
||
|
jest.runAllTimers();
|
||
|
expect(cbMock).toHaveBeenCalledTimes(1);
|
||
|
});
|
||
|
|
||
|
it('test getContainer - option', async () => {
|
||
|
const div = document.createElement('div');
|
||
|
scrollTo(1000, {
|
||
|
getContainer: () => div,
|
||
|
});
|
||
|
jest.runAllTimers();
|
||
|
expect(div.scrollTop).toBe(1000);
|
||
|
});
|
||
|
});
|