UNPKG

sg-socket-constants

Version:
26 lines (17 loc) 419 B
/** * Test case for observingEvents. * Runs with mocha. */ 'use strict' const observingEvents = require('../lib/observing_events.js') const assert = require('assert') const co = require('co') describe('observing-events', () => { before(() => co(function * () { })) after(() => co(function * () { })) it('Observing events', () => co(function * () { })) }) /* global describe, before, after, it */