mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
17 lines
433 B
JavaScript
17 lines
433 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import { mountToJson } from 'enzyme-to-json';
|
|
import Search from '../search';
|
|
|
|
describe('Search', () => {
|
|
it('should show cross icon when input value exists', () => {
|
|
const wrapper = mount(<Search value={''} />);
|
|
|
|
expect(mountToJson(wrapper)).toMatchSnapshot();
|
|
|
|
wrapper.setProps({ value: 'a' });
|
|
|
|
expect(mountToJson(wrapper)).toMatchSnapshot();
|
|
});
|
|
});
|