UNPKG

apeman-app-validate

Version:
24 lines (19 loc) 435 B
/** * Test case for index. * Runs with mocha. */ 'use strict' const index = require('../lib/index.js') const assert = require('assert') const co = require('co') describe('index', () => { before(() => co(function * () { })) after(() => co(function * () { })) it('Create an app.', () => co(function * () { assert.ok(index) assert.equal(typeof index, 'function') })) }) /* global describe, before, after, it */