ant-design/components/transfer/__tests__/search.test.js
2017-10-09 13:27:35 +08:00

16 lines
359 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();
});
});