// Import the necessary dependencies
import { render, screen } from '@testing-library/react'
import React from 'react'
import { Options } from './index'

describe('Options Component', () => {
  it('should render with default props', () => {
    render(
      <Options
        active={false}
        children='Some children'
        handleClick={() => {
          return console.log('Option clicked')
        }}
        icon={<></>}
        index={1}
        label='Option Label'
        path='/path'
      />
    )

    // Add your assertions here
    // For example:
    const optionLabelElement = screen.getByText('Option Label')
    expect(optionLabelElement).toBeInTheDocument()
  })

  // Add more tests as needed
})
