mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
18 lines
417 B
JavaScript
18 lines
417 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import DatePicker from '..';
|
|
import focusTest from '../../../tests/shared/focusTest';
|
|
|
|
const { WeekPicker } = DatePicker;
|
|
|
|
describe('WeekPicker', () => {
|
|
focusTest(WeekPicker);
|
|
|
|
it('should support style prop', () => {
|
|
const wrapper = mount(
|
|
<WeekPicker style={{ width: 400 }} />
|
|
);
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
});
|
|
});
|