2017-11-30 17:31:25 +01:00
|
|
|
/**
|
|
|
|
* PackageDetail component
|
|
|
|
*/
|
|
|
|
import React from 'react';
|
|
|
|
import { shallow } from 'enzyme';
|
2018-07-17 21:22:44 +02:00
|
|
|
import PackageDetail from '../../../../src/webui/components/PackageDetail/index';
|
|
|
|
import Readme from '../../../../src/webui/components/Readme/index';
|
2018-06-28 18:33:37 +02:00
|
|
|
import {WEB_TITLE} from '../../../../src/lib/constants';
|
2017-11-30 17:31:25 +01:00
|
|
|
|
|
|
|
console.error = jest.fn();
|
|
|
|
|
|
|
|
describe('<PackageDetail /> component', () => {
|
|
|
|
it('should give error for required props', () => {
|
|
|
|
shallow(<PackageDetail />);
|
|
|
|
expect(console.error).toBeCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should load the component', () => {
|
|
|
|
const props = {
|
|
|
|
readMe: 'Test readme',
|
2018-07-21 20:49:10 +02:00
|
|
|
packageName: WEB_TITLE
|
2017-11-30 17:31:25 +01:00
|
|
|
};
|
|
|
|
const wrapper = shallow(<PackageDetail {...props} />);
|
2017-12-01 20:04:01 +01:00
|
|
|
|
2018-06-28 18:33:37 +02:00
|
|
|
expect(wrapper.find('h1').text()).toEqual(WEB_TITLE);
|
2017-12-01 20:04:01 +01:00
|
|
|
expect(
|
|
|
|
wrapper
|
|
|
|
.find(Readme)
|
|
|
|
.dive()
|
|
|
|
.html()
|
|
|
|
).toEqual('<div class="markdown-body">Test readme</div>');
|
2017-12-02 15:01:06 +01:00
|
|
|
expect(wrapper.html()).toMatchSnapshot();
|
2017-11-30 17:31:25 +01:00
|
|
|
});
|
|
|
|
});
|