UNPKG

apeman-react-list

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