You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import React from 'react';
|
|
|
|
import { mount } from 'enzyme';
|
|
|
|
import Search from '../Search';
|
|
|
|
import Button from '../../button';
|
|
|
|
import focusTest from '../../../tests/shared/focusTest';
|
|
|
|
|
|
|
|
describe('Input.Search', () => {
|
|
|
|
focusTest(Search);
|
|
|
|
|
|
|
|
it('should support custom button', () => {
|
|
|
|
const wrapper = mount(
|
|
|
|
<Search enterButton={<button>ok</button>} />
|
|
|
|
);
|
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should support custom Button', () => {
|
|
|
|
const wrapper = mount(
|
|
|
|
<Search enterButton={<Button>ok</Button>} />
|
|
|
|
);
|
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|