import { render, screen } from '@testing-library/react'; import Home from '@/app/page'; describe('Home Page', () => { it('renders the main heading', () => { render(); const heading = screen.getByRole('heading', { name: /WellNuo Web/i }); expect(heading).toBeInTheDocument(); }); it('renders the description text', () => { render(); const description = screen.getByText(/Health monitoring for loved ones/i); expect(description).toBeInTheDocument(); }); });