import { render, screen } from '@testing-library/react'; import { test, expect } from 'vitest'; import App from '../src/App'; test('renders the DocHub heading', () => { render(); expect(screen.getByRole('heading', { name: 'DocHub' })).toBeInTheDocument(); });