sg-socket-constants
Version:
Constants variables for socket
28 lines (18 loc) • 422 B
JavaScript
/**
* Test case for authEvents.
* Runs with mocha.
*/
const authEvents = require('../lib/auth_events.js')
const assert = require('assert')
const co = require('co')
describe('auth-events', function () {
this.timeout(3000)
before(() => co(function * () {
}))
after(() => co(function * () {
}))
it('Auth events', () => co(function * () {
}))
})
/* global describe, before, after, it */