UNPKG

329 BJavaScriptView Raw
1/**
2 * Test case for index.
3 * Runs with nodeunit.
4 */
5
6var index = require('../lib/index.js');
7
8exports.setUp = function (done) {
9 done();
10};
11
12exports.tearDown = function (done) {
13 done();
14};
15
16exports['Create an app.'] = function (test) {
17 test.ok(index);
18 test.equal(typeof index, 'function');
19 test.done();
20};
21