apeman-app-validate
Version:
apeman app to do schema validation.
24 lines (19 loc) • 435 B
JavaScript
/**
* Test case for index.
* Runs with mocha.
*/
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 */