box-ui-elements-mlh
Version:
15 lines (12 loc) • 435 B
JavaScript
import React from 'react';
import { shallow } from 'enzyme';
import ReloadNotification from '../ReloadNotification';
const getWrapper = () => shallow(<ReloadNotification />);
describe('elements/content-preview/ReloadNotification', () => {
describe('render()', () => {
test('should render correctly', () => {
const wrapper = getWrapper();
expect(wrapper).toMatchSnapshot();
});
});
});