forked from sombochea/verdaccio-ui
chore: sync with verdaccio master
This commit is contained in:
14
test/unit/webui/components/help.spec.js
Normal file
14
test/unit/webui/components/help.spec.js
Normal file
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* 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();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user