import { render, screen } from '@testing-library/react' import HomePage from '../../pages/HomePage' test('renders hello world message', () => { render() const greetings = screen.getByText(/Hello world/i) expect(greetings).toBeInTheDocument() })