import { render } from '@testing-library/react' import { Overline } from './index' describe('Overline', () => { it('should render correctly with default props', () => { const { container } = render() }) it('should render with custom styles', () => { const { container } = render( ) const overlineElement = container.firstChild expect(overlineElement).toBeTruthy() }) })