Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import React from 'react';
import { render } from 'react-testing-library';
import List from '../List';
describe('<List />', () => {
it('should render an <ul> tag', () => {
const {
container: { firstChild },
} = render(<List />);
expect(firstChild.tagName).toEqual('UL');
});
it('should have a class attribute', () => {
const {
container: { firstChild },
} = render(<List />);
expect(firstChild.hasAttribute('class')).toBe(true);
});
it('should adopt a valid attribute', () => {
const id = 'test';
const {
container: { firstChild },
} = render(<List id={id} />);
expect(firstChild.id).toEqual(id);
});
it('should not adopt an invalid attribute', () => {
const {
container: { firstChild },
} = render(<List attribute="test" />);
expect(firstChild.hasAttribute('attribute')).toBe(false);
});
});