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/help.spec.js

15 lines
350 B
JavaScript
Raw Normal View History

2017-11-29 08:14:56 -05:00
/**
* Help component
*/
import React from 'react';
import { shallow } from 'enzyme';
import Help from '../../../../src/webui/components/Help/index';
2017-11-29 08:14:56 -05:00
2017-12-01 14:04:01 -05:00
describe('<Help /> component', () => {
2018-01-15 17:03:43 -05:00
2018-12-05 13:30:08 -05:00
test('should render the component in default state', () => {
2017-11-29 08:14:56 -05:00
const wrapper = shallow(<Help />);
expect(wrapper.html()).toMatchSnapshot();
2017-11-29 08:14:56 -05:00
});
});