1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/webui/components/search.spec.js
Ayush Sharma 50884dfd7e webui: <Search /> component test case
Fix: placeholder test for <Search /> component

minor fix
2018-01-07 07:59:36 +00:00

44 lines
1.2 KiB
JavaScript

/**
* 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();
});
});