mirror of
https://github.com/SomboChea/ui
synced 2024-11-14 10:14:27 +07:00
ae73772a37
* refactor: added eslint-plugin-import * refactor: disable some rules for muiComponents * fix: fixed import
12 lines
283 B
TypeScript
12 lines
283 B
TypeScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
|
|
import Help from './Help';
|
|
|
|
describe('<Help /> component', () => {
|
|
test('should render the component in default state', () => {
|
|
const wrapper = mount(<Help />);
|
|
expect(wrapper.html()).toMatchSnapshot();
|
|
});
|
|
});
|