test: update test

pull/4977/head
tangjinzhou 2021-12-05 00:46:32 +08:00
parent 698b684233
commit 9ed73529a6
2 changed files with 6 additions and 6 deletions

View File

@ -28,7 +28,7 @@ describe('AutoComplete with Custom Input Element Render', () => {
const input = wrapper.find('input');
input.element.value = '123';
input.trigger('input');
await sleep();
await sleep(100);
expect($$('.ant-select-item-option').length).toBe(3);
});
});

View File

@ -1,6 +1,6 @@
import dayjs from 'dayjs';
import { mount } from '@vue/test-utils';
import { asyncExpect , sleep } from '../../../tests/utils';
import { asyncExpect, sleep } from '../../../tests/utils';
import MockDate from 'mockdate';
import Calendar from '..';
import Header from '../Header';
@ -37,7 +37,7 @@ describe('Calendar', () => {
);
await asyncExpect(() => {
wrapper.findAll('.ant-picker-cell')[0].trigger('click');
});
}, 0);
await asyncExpect(() => {
expect(onSelect).toHaveBeenCalledWith(expect.anything());
const value = onSelect.mock.calls[0][0];
@ -141,11 +141,11 @@ describe('Calendar', () => {
);
await sleep();
openSelect(wrapper, '.ant-picker-calendar-year-select');
await sleep();
await sleep(100);
clickSelectItem(wrapper);
await sleep();
openSelect(wrapper, '.ant-picker-calendar-month-select');
await sleep();
await sleep(100);
// 2 years and 11 months
expect(wrapper.findAll('.ant-select-item-option').length).toBe(13);
});
@ -336,7 +336,7 @@ describe('Calendar', () => {
);
await sleep();
openSelect(wrapper, '.ant-picker-calendar-month-select');
await sleep();
await sleep(100);
clickSelectItem(wrapper);
expect(onValueChange).toHaveBeenCalledWith(value.month(10));
});