import React from 'react' import { render, screen } from '@testing-library/react' import { ContentDivider } from '.' describe('ContentDivider', () => { it('Should have a separator role', () => { render() expect(screen.getByRole('separator', { hidden: true })).toBeInTheDocument() }) })