import { render, screen } from '@testing-library/react';
import { describe, it, expect } from 'vitest';
import { NotificationView } from './NotificationView';

describe('NotificationView', () => {
  it('should render', () => {
    render(<NotificationView />);
    expect(screen.getByText('Notification')).toBeInTheDocument();
  });
});