import React from 'react'; import { render } from 'react-testing-library'; import Select from '../Select'; describe(' tag', () => { const { container } = render(); expect(container.firstChild.hasAttribute('class')).toBe(true); }); it('should adopt a valid attribute', () => { const id = 'test'; const { container } = render(); expect(container.firstChild.hasAttribute('attribute')).toBe(false); }); });