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