UNPKG

apeman-react-list

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