@fe6/water-pro
Version:
An enterprise-class UI design language and Vue-based implementation
26 lines (22 loc) • 647 B
JavaScript
import { mount } from '@vue/test-utils';
import Empty from '..';
import mountTest from '../../../tests/shared/mountTest';
describe('Empty', () => {
mountTest(Empty);
it('image size should change', () => {
const wrapper = mount({
render() {
return <Empty imageStyle={{ height: '20px' }} />;
},
});
expect(wrapper.find('.ant-empty-image').element.style.height).toBe('20px');
});
it('description can be false', () => {
const wrapper = mount({
render() {
return <Empty description={false} />;
},
});
expect(wrapper.findAll('.ant-empty-description').length).toBe(0);
});
});