UNPKG

sg-socket-constants

Version:
28 lines (18 loc) 422 B
/** * Test case for authEvents. * Runs with mocha. */ 'use strict' 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 */