UNPKG

@data-ui/forms

Version:

A package of form elements for data-rich UIs. https://williaster.github.io/data-ui

21 lines (17 loc) 476 B
import React from 'react'; import { shallow } from 'enzyme'; import IconChevronDown from '../src/icons/IconChevronDown'; describe('<IconChevronDown />', () => { it('it should be defined', () => { expect(IconChevronDown).toBeDefined(); }); it('it should render an <svg>', () => { const wrapper = shallow(<IconChevronDown />); expect( wrapper .dive() // BaseIcon .dive() // IconX .find('svg'), ).toHaveLength(1); }); });