import React from 'react'; import { render, screen } from '@testing-library/react'; import { AspectRatioBox } from './AspectRatioBox'; describe('AspectRatioBox', () => { it('renders correctly', () => { render( Hello ); expect(screen.getByText('Hello')).toBeVisible(); }); });