import { render, screen } from '@test-utils';
import Section from './section';
const title = 'Section title';
const content = 'Section content.';
describe('Section', () => {
  it('renders a title (h2)', () => {
    render();
    expect(screen.getByRole('heading', { level: 2 })).toHaveTextContent(title);
  });
  it('renders a content', () => {
    render();
    expect(screen.getByText(content)).toBeInTheDocument();
  });
});