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