import React from 'react';
import { renderWithTheme } from '../helper/renderWithTheme';
import Alert, { AlertText } from './Alert';
test('Alert Status matches Snapshot', () => {
const { container } = renderWithTheme(
<>
Dies ist eine Erfolgsmeldung
Merke dir dies und das!
Dies ist eine Warnung!
So geht das nicht. Error!
>,
{},
);
expect(container).toMatchSnapshot();
});