import React from 'react'; import Alert, { AlertProps } from './index'; const data: AlertProps = { title: 'Title', text:

Subtitle

, isOpen: true, }; describe('Alert', () => { const defaultElement = ; let wrapper; beforeEach(() => { wrapper = shallow(defaultElement); }); it('should render correctly', () => { expect(wrapper).toMatchSnapshot(); }); });