UNPKG

apeman-app-json

Version:
22 lines (16 loc) 329 B
/** * Test case for index. * Runs with nodeunit. */ var index = require('../lib/index.js'); exports.setUp = function (done) { done(); }; exports.tearDown = function (done) { done(); }; exports['Create an app.'] = function (test) { test.ok(index); test.equal(typeof index, 'function'); test.done(); };