You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
780 B

14 years ago
var common = require('../common');
var assert = require('assert');
var events = require('events');
var e = new events.EventEmitter();
var events_new_listener_emited = [];
var times_hello_emited = 0;
e.addListener('newListener', function(event, listener) {
console.log('newListener: ' + event);
15 years ago
events_new_listener_emited.push(event);
});
e.on('hello', function(a, b) {
console.log('hello');
times_hello_emited += 1;
assert.equal('a', a);
assert.equal('b', b);
15 years ago
});
console.log('start');
15 years ago
e.emit('hello', 'a', 'b');
// just make sure that this doesn't throw:
var f = new events.EventEmitter();
f.setMaxListeners(0);
process.addListener('exit', function() {
assert.deepEqual(['hello'], events_new_listener_emited);
assert.equal(1, times_hello_emited);
});