UNPKG

quickbuild

Version:

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

36 lines (30 loc) 951 B
import React from 'react'; import { render } from 'react-testing-library'; import ListItemTitle from '../ListItemTitle'; describe('<ListItemTitle />', () => { it('should render an <p> tag', () => { const { container: { firstChild }, } = render(<ListItemTitle />); expect(firstChild.tagName).toEqual('P'); }); it('should have a class attribute', () => { const { container: { firstChild }, } = render(<ListItemTitle />); expect(firstChild.hasAttribute('class')).toBe(true); }); it('should adopt a valid attribute', () => { const id = 'test'; const { container: { firstChild }, } = render(<ListItemTitle id={id} />); expect(firstChild.id).toEqual(id); }); it('should not adopt an invalid attribute', () => { const { container: { firstChild }, } = render(<ListItemTitle attribute="test" />); expect(firstChild.hasAttribute('attribute')).toBe(false); }); });