import React from 'react'; import { renderWithTheme } from '../helper/renderWithTheme'; import NoticeBox, { NoticeBoxText } from './NoticeBox'; test('NoticeBox Status matches Snapshot', () => { const { container } = renderWithTheme( Dies ist eine Erfolgsmeldung , {}, ); expect(container).toMatchSnapshot(); });