that
Version:
Advanced Node.js framework featuring Evented Evolution Engine, Seamless State Sharing, and Plugin-optimized Operation
28 lines (22 loc) • 474 B
JavaScript
var assert = require('assert');
describe('basic test', function () {
var that;
before(function () {
that = require('../');
});
after(function () {
delete that;
});
it('just like that', function () {
assert.strictEqual(that, that);
});
it('listens to that', function () {
that.on('music', function () {
that.emit('wow');
});
});
it('heard that', function (done) {
that.on('wow', done);
that.emit('music');
});
});