mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 20:47:56 +08:00
22 lines
542 B
JavaScript
22 lines
542 B
JavaScript
import { mount } from '@vue/test-utils'
|
|
import { asyncExpect } from '@/tests/utils'
|
|
import DatePicker from '..'
|
|
import focusTest from '../../../tests/shared/focusTest'
|
|
|
|
const { WeekPicker } = DatePicker
|
|
|
|
describe('WeekPicker', async () => {
|
|
focusTest(WeekPicker)
|
|
|
|
it('should support style prop', async () => {
|
|
const wrapper = mount({
|
|
render () {
|
|
return <WeekPicker style={{ width: '400px' }} />
|
|
},
|
|
}, { sync: false })
|
|
await asyncExpect(() => {
|
|
expect(wrapper.html()).toMatchSnapshot()
|
|
})
|
|
})
|
|
})
|