0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-27 22:59:51 -05:00

webui: <Search /> component test case

Fix: placeholder test for <Search /> component

minor fix
This commit is contained in:
Ayush Sharma 2017-11-29 15:29:55 +05:30 committed by juanpicado
parent de867e7a65
commit 50884dfd7e

View file

@ -0,0 +1,44 @@
/**
* Search component
*/
import React from 'react';
import { shallow } from 'enzyme';
import Search from '../../../src/webui/src/components/Search/index';
console.error = jest.fn();
describe('<Search /> component', () => {
it('should give error for the required fields', () => {
const wrapper = shallow(<Search />);
expect(console.error).toBeCalled();
expect(wrapper
.find('input')
.prop('placeholder')).toEqual('Type to search...');
});
it('should have <input /> element with correct properties', () => {
const props = {
handleSearchInput: () => {},
placeHolder: 'Test placeholder'
};
const wrapper = shallow(<Search {...props} />);
expect(wrapper.find('input')).toHaveLength(1);
expect(wrapper.find('input').prop('placeholder')).toEqual(
'Test placeholder'
);
expect(typeof wrapper
.find('input')
.prop('onChange')).toBe('function');
});
it('should call the handleSearchInput function', () => {
const props = {
handleSearchInput: jest.fn(),
placeHolder: 'Test placeholder'
};
const wrapper = shallow(<Search {...props} />);
wrapper.find('input').simulate('change');
expect(props.handleSearchInput).toBeCalled();
});
});