UNPKG

apemandb

Version:
28 lines (18 loc) 447 B
/** * Test case for setupDatabase. * Runs with mocha. */ 'use strict' const setupDatabase = require('../lib/preparing/setup_database.js') const assert = require('assert') const co = require('co') describe('setup-database', function () { this.timeout(3000) before(() => co(function * () { })) after(() => co(function * () { })) it('Setup database', () => co(function * () { })) }) /* global describe, before, after, it */