import { render, fireEvent, screen } from '@testing-library/react'; import { Notification } from './Notification'; describe('Notification', () => { test('renders a default Notification', async () => { render(This is important info); expect(screen.getByTestId('notification')).toBeInTheDocument(); }); });