Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import React from 'react';
import { render } from 'react-testing-library';
import H2 from '../index';
describe('<H2 />', () => {
it('should render a prop', () => {
const id = 'testId';
const { container } = render(<H2 id={id} />);
expect(container.querySelector('h2').id).toEqual(id);
});
it('should render its text', () => {
const children = 'Text';
const { container, queryByText } = render(<H2>{children}</H2>);
const { childNodes } = container.querySelector('h2');
expect(childNodes).toHaveLength(1);
expect(queryByText(children)).not.toBeNull();
});
});