1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-18 17:29:43 +07:00
verdaccio-ui/test/unit/components/help.spec.js

15 lines
347 B
JavaScript
Raw Normal View History

2019-04-05 02:23:40 +07:00
/**
* Help component
*/
import React from 'react';
import { shallow } from 'enzyme';
import Help from '../../../src/webui/components/Help/index';
2019-04-05 02:23:40 +07:00
describe('<Help /> component', () => {
test('should render the component in default state', () => {
const wrapper = shallow(<Help />);
expect(wrapper.html()).toMatchSnapshot();
});
});