mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +08:00
test: reduce test time
This commit is contained in:
parent
6729ce30fa
commit
9a3feda565
@ -274,6 +274,13 @@ describe('Anchor Render', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('Anchor targetOffset prop', async () => {
|
it('Anchor targetOffset prop', async () => {
|
||||||
|
jest.useFakeTimers();
|
||||||
|
|
||||||
|
const dateNowMock = jest
|
||||||
|
.spyOn(Date, 'now')
|
||||||
|
.mockImplementationOnce(() => 0)
|
||||||
|
.mockImplementationOnce(() => 1000);
|
||||||
|
|
||||||
const scrollToSpy = jest.spyOn(window, 'scrollTo');
|
const scrollToSpy = jest.spyOn(window, 'scrollTo');
|
||||||
let root = document.getElementById('root');
|
let root = document.getElementById('root');
|
||||||
if (!root) {
|
if (!root) {
|
||||||
@ -288,17 +295,20 @@ describe('Anchor Render', () => {
|
|||||||
</Anchor>,
|
</Anchor>,
|
||||||
);
|
);
|
||||||
wrapper.instance().handleScrollTo('#API');
|
wrapper.instance().handleScrollTo('#API');
|
||||||
await sleep(1000);
|
jest.runAllTimers();
|
||||||
expect(scrollToSpy).toHaveBeenLastCalledWith(0, 1000);
|
expect(scrollToSpy).toHaveBeenLastCalledWith(0, 1000);
|
||||||
|
|
||||||
wrapper.setProps({ offsetTop: 100 });
|
wrapper.setProps({ offsetTop: 100 });
|
||||||
wrapper.instance().handleScrollTo('#API');
|
wrapper.instance().handleScrollTo('#API');
|
||||||
await sleep(1000);
|
jest.runAllTimers();
|
||||||
expect(scrollToSpy).toHaveBeenLastCalledWith(0, 900);
|
expect(scrollToSpy).toHaveBeenLastCalledWith(0, 900);
|
||||||
|
|
||||||
wrapper.setProps({ targetOffset: 200 });
|
wrapper.setProps({ targetOffset: 200 });
|
||||||
wrapper.instance().handleScrollTo('#API');
|
wrapper.instance().handleScrollTo('#API');
|
||||||
await sleep(1000);
|
jest.runAllTimers();
|
||||||
expect(scrollToSpy).toHaveBeenLastCalledWith(0, 800);
|
expect(scrollToSpy).toHaveBeenLastCalledWith(0, 800);
|
||||||
|
|
||||||
|
dateNowMock.mockRestore();
|
||||||
|
jest.useRealTimers();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user