UNPKG

apeman-react-list

Version:
28 lines (22 loc) 496 B
/** * Test case for ap-list-item-arrow-icon. * Runs with mocha. */ 'use strict' import ApListItemArrowIcon from '../lib/ap_list_item_arrow_icon' import React from 'react' import assert from 'assert' import { shallow } from 'enzyme' describe('ap-list-item-arrow-icon', () => { before(() => { }) after(() => { }) it('Render a component', () => { let element = shallow( <ApListItemArrowIcon/> ) assert.ok(element) }) }) /* global describe, before, after, it */