1
0
mirror of https://github.com/SomboChea/ui synced 2024-09-28 12:27:49 +07:00
verdaccio-ui/test/unit/webui/components/help.spec.js
2019-04-04 21:23:40 +02:00

15 lines
350 B
JavaScript

/**
* Help component
*/
import React from 'react';
import { shallow } from 'enzyme';
import Help from '../../../../src/webui/components/Help/index';
describe('<Help /> component', () => {
test('should render the component in default state', () => {
const wrapper = shallow(<Help />);
expect(wrapper.html()).toMatchSnapshot();
});
});