UNPKG

apeman-react-list

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