UNPKG

sugo-constants

Version:
28 lines (18 loc) 422 B
/** * Test case for hubNotices. * Runs with mocha. */ 'use strict' const hubNotices = require('../lib/hub_notices.js') const assert = require('assert') const co = require('co') describe('hub-notices', function () { this.timeout(3000) before(() => co(function * () { })) after(() => co(function * () { })) it('Hub notices', () => co(function * () { })) }) /* global describe, before, after, it */