apeman-react-list
Version:
apeman react package for list component.
28 lines (22 loc) • 478 B
JSX
/**
* Test case for ap-list-bar-message.
* Runs with mocha.
*/
import ApListBarMessage from '../lib/ap_list_bar_message'
import React from 'react'
import assert from 'assert'
import { shallow } from 'enzyme'
describe('ap-list-bar-message', () => {
before(() => {
})
after(() => {
})
it('Render a component', () => {
let element = shallow(
<ApListBarMessage/>
)
assert.ok(element)
})
})
/* global describe, before, after, it */