mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
27 lines
829 B
JavaScript
27 lines
829 B
JavaScript
import { mount } from '@vue/test-utils'
|
|
import { asyncExpect } from '@/tests/utils'
|
|
import moment from 'moment'
|
|
import DatePicker from '..'
|
|
import focusTest from '../../../tests/shared/focusTest'
|
|
import { openPanel, $$ } from './utils'
|
|
|
|
const { MonthPicker } = DatePicker
|
|
|
|
describe('MonthPicker', () => {
|
|
focusTest(MonthPicker)
|
|
it('reset select item when popup close', async () => {
|
|
const wrapper = mount(MonthPicker, {
|
|
propsData: { value: moment('2018-07-01') },
|
|
sync: false,
|
|
attachToDocument: true,
|
|
})
|
|
await asyncExpect(() => {
|
|
openPanel(wrapper)
|
|
})
|
|
await asyncExpect(() => {
|
|
$$('.ant-calendar-month-panel-month')[0].click()
|
|
$$('.ant-calendar-month-panel-cell')[6].getAttribute('class').split(' ').includes('ant-calendar-month-panel-selected-cell')
|
|
}, 0)
|
|
})
|
|
})
|