/**
* Infos component
*/
import React from 'react';
import { shallow } from 'enzyme';
import Infos from '../../../../../src/webui/components/PackageSidebar/modules/Infos/index';
describe(' : ', () => {
test('should load the component without props', () => {
const wrapper = shallow();
expect(wrapper.html()).toMatchSnapshot();
});
test('should load the Info component with props', () => {
const props = {
homepage: 'https://www.verdaccio.org',
license: 'MIT',
repository: 'https://github.com/verdaccio/verdaccio'
}
const wrapper = shallow();
expect(wrapper.html()).toMatchSnapshot();
});
test('should load the Info component with homepage only', () => {
const props = {
homepage: 'https://www.verdaccio.org'
}
const wrapper = shallow();
expect(wrapper.html()).toMatchSnapshot();
});
test('should load the Info component with license only', () => {
const props = {
license: 'MIT',
}
const wrapper = shallow();
expect(wrapper.html()).toMatchSnapshot();
});
test('should load the Info component with repository only', () => {
const props = { repository: 'https://github.com/verdaccio/verdaccio' };
const wrapper = shallow();
expect(wrapper.html()).toMatchSnapshot();
});
});