ant-design/components/transfer/__tests__/search.test.js
2017-04-02 18:09:23 +08:00

16 lines
361 B
JavaScript

import React from 'react';
import { mount } from 'enzyme';
import Search from '../search';
describe('Search', () => {
it('should show cross icon when input value exists', () => {
const wrapper = mount(<Search value={''} />);
expect(wrapper).toMatchSnapshot();
wrapper.setProps({ value: 'a' });
expect(wrapper).toMatchSnapshot();
});
});