UNPKG

quickbuild

Version:

A mature, feature-complete application generator with an emphasis on speed

36 lines (30 loc) 890 B
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); }); });