/
usr
/
local
/
lib
/
node_modules
/
pm2
/
node_modules
/
tx2
/
test
/
/usr/local/lib/node_modules/pm2/node_modules/tx2/test
mkdir
upload
Name
Size
Mode
Actions
action.mocha.js
381
0644
edit
dl
rm
event.mocha.js
520
0644
edit
dl
rm
issue.mocha.js
540
0644
edit
dl
rm
metric.mocha.js
2577
0644
edit
dl
rm
Edit:
/usr/local/lib/node_modules/pm2/node_modules/tx2/test/event.mocha.js
(520B)
const tx2 = require('..') const should = require('should') describe('Event', function() { it('should emit an event without data', (done) => { tx2.once('data', (dt) => { should(dt.type).eql('human:event') done() }) tx2.event('something special') }) it('should emit an event with data', (done) => { tx2.once('data', (dt) => { should(dt.type).eql('human:event') should(dt.data.yes).eql(true) done() }) tx2.event('something special', { yes : true }) }) })
Save
cmd:
run