apeman-react-list
Version:
apeman react package for list component.
28 lines (22 loc) • 445 B
JSX
/**
* Test case for ap-list-item.
* Runs with mocha.
*/
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 */