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

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