sg-socket-constants
Version:
Constants variables for socket
26 lines (17 loc) • 419 B
JavaScript
/**
* Test case for observingEvents.
* Runs with mocha.
*/
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 */