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