UNPKG

apeman-react-checkbox

Version:
23 lines (19 loc) 371 B
/** * Test case for index. * Runs with mocha. */ 'use strict' const index = require('../lib/index.js') const assert = require('assert') describe('index', () => { before(() => { }) after(() => { }) it('Create an app.', () => { for (let name of Object.keys(index)) { assert.ok(index[ name ]) } }) }) /* global describe, before, after, it */