UNPKG

309 BJavaScriptView Raw
1/**
2 * Test case for index.
3 * Runs with mocha.
4 */
5"use strict";
6
7const index = require('../lib/index.js'),
8 assert = require('assert');
9
10describe('index', () => {
11
12 it('Create an app.', (done) => {
13 assert.ok(index);
14 assert.equal(typeof index, 'function');
15 done();
16 });
17});
18