1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/unit/webui/components/noitems.spec.js
Juan Picado @jotadeveloper 49c6191bb5
refactor: relocate unit test
no logic change, just path updates
2018-06-23 20:57:12 +02:00

26 lines
653 B
JavaScript

/**
* NoItems component
*/
import React from 'react';
import { shallow } from 'enzyme';
import NoItems from '../../../../src/webui/src/components/NoItems/index';
console.error = jest.fn();
describe('<NoItem /> component', () => {
it('should give error for the required fields', () => {
shallow(<NoItems />);
expect(console.error).toBeCalled();
});
it('should set html from props', () => {
const props = {
text: 'This is a test string'
};
const wrapper = shallow(<NoItems {...props} />);
expect(wrapper.find('h2').text()).toEqual('This is a test string');
expect(wrapper.html()).toMatchSnapshot();
});
});