UNPKG

sugo-constants

Version:
30 lines (21 loc) 496 B
/** * Test case for cloudUrls. * Runs with mocha. */ 'use strict' const HubURLs = require('../lib/hub_urls.js') const assert = require('assert') const co = require('co') describe('cloud-urls', function () { this.timeout(3000) before(() => co(function * () { })) after(() => co(function * () { })) it('Cloud urls', () => co(function * () { for (let name of Object.keys(HubURLs)) { assert.ok(HubURLs[ name ]) } })) }) /* global describe, before, after, it */