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.

31 lines
643 B

require("../common");
var events = require('events');
var e = new events.EventEmitter();
var events_new_listener_emited = [];
var times_hello_emited = 0;
15 years ago
e.addListener("newListener", function (event, listener) {
console.log("newListener: " + event);
15 years ago
events_new_listener_emited.push(event);
});
e.addListener("hello", function (a, b) {
console.log("hello");
15 years ago
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");
process.addListener("exit", function () {
assert.deepEqual(["hello"], events_new_listener_emited);
assert.equal(1, times_hello_emited);
});