mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
49c6191bb5
no logic change, just path updates
28 lines
703 B
JavaScript
28 lines
703 B
JavaScript
/**
|
|
* Readme component
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import Readme from '../../../../src/webui/src/components/Readme/index';
|
|
|
|
console.error = jest.fn();
|
|
|
|
describe('<Readme /> component', () => {
|
|
it('should give error for the required fields', () => {
|
|
shallow(<Readme />);
|
|
expect(console.error).toBeCalled();
|
|
});
|
|
|
|
it('should dangerously set html', () => {
|
|
const props = {
|
|
readMe: '<h1>This is a test string</h1>'
|
|
};
|
|
const wrapper = shallow(<Readme {...props} />);
|
|
expect(wrapper.html()).toEqual(
|
|
'<div class="markdown-body"><h1>This is a test string</h1></div>'
|
|
);
|
|
expect(wrapper.html()).toMatchSnapshot();
|
|
});
|
|
});
|