import React from 'react'; import { render, screen } from '@testing-library/react'; describe('Hello World Test', () => { it('should display hello world', () => { // Render a simple component render(
Hello World
); // Check if "Hello World" is in the document const helloWorldElement = screen.getByText(/hello world/i); expect(helloWorldElement).toBeInTheDocument(); }); });