import { render } from '@testing-library/react'; import HomeSectionGrid from './home-section-grid'; describe('HomeSectionGrid', () => { it('should render successfully', () => { const { baseElement } = render(); expect(baseElement).toBeTruthy(); }); });