0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-20 22:52:46 -05:00
verdaccio/test/unit/webui/components/help.spec.js

15 lines
350 B
JavaScript
Raw Normal View History

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