mirror of https://github.com/lukechilds/node.git
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.
33 lines
556 B
33 lines
556 B
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var events = require('events');
|
|
|
|
var gotEvent = false;
|
|
|
|
process.on('exit', function() {
|
|
assert(gotEvent);
|
|
});
|
|
|
|
var e = new events.EventEmitter();
|
|
|
|
e.on('maxListeners', function() {
|
|
gotEvent = true;
|
|
});
|
|
|
|
// Should not corrupt the 'maxListeners' queue.
|
|
e.setMaxListeners(42);
|
|
|
|
assert.throws(function() {
|
|
e.setMaxListeners(NaN);
|
|
});
|
|
|
|
assert.throws(function() {
|
|
e.setMaxListeners(-1);
|
|
});
|
|
|
|
assert.throws(function() {
|
|
e.setMaxListeners('and even this');
|
|
});
|
|
|
|
e.emit('maxListeners');
|
|
|