0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/test/unit/webui/components
Peter Cools 7c3a617d79 feat: adds option to set scope in webui instructions header
If you're using this registry for a specific module scope, specify that scope to set it in the webui instructions header e.g. npm set @coolsp:registry http://localhost:4873.
Added as webui.scope option in .yaml.
> Note: in .yaml, escape @ with \\@.

See also feature request #593.
Update unit test for added scope
2018-07-29 19:11:43 +02:00
..
__mocks__ refactor: unit tests and api service 2018-06-30 12:22:07 +02:00
__snapshots__ refactor: <Package /> , <Footer /> and package sidebar code refactoring 2018-07-22 21:22:51 +02:00
PackageSidebar chore: add unit test for #857 scenario 2018-07-28 08:45:10 +02:00
store refactor: <Package /> , <Footer /> and package sidebar code refactoring 2018-07-22 21:22:51 +02:00
footer.spec.js refactor: <Package /> , <Footer /> and package sidebar code refactoring 2018-07-22 21:22:51 +02:00
header.spec.js feat: adds option to set scope in webui instructions header 2018-07-29 19:11:43 +02:00
help.spec.js refactor: removes un-necessary 'src' from webui path 2018-07-17 22:03:06 +02:00
noitems.spec.js refactor: removes un-necessary 'src' from webui path 2018-07-17 22:03:06 +02:00
notfound.spec.js refactor: removes un-necessary 'src' from webui path 2018-07-17 22:03:06 +02:00
package.spec.js refactor: <Package /> , <Footer /> and package sidebar code refactoring 2018-07-22 21:22:51 +02:00
packagedetail.spec.js refactor: <Package /> , <Footer /> and package sidebar code refactoring 2018-07-22 21:22:51 +02:00
packagelist.spec.js refactor: removes un-necessary 'src' from webui path 2018-07-17 22:03:06 +02:00
readme.spec.js refactor: removes un-necessary 'src' from webui path 2018-07-17 22:03:06 +02:00
search.spec.js refactor: removes un-necessary 'src' from webui path 2018-07-17 22:03:06 +02:00

/**
 * Readme component
 */

import React from 'react';
import { shallow } from 'enzyme';
import Readme from '../../../../src/webui/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();
  });
});