mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 21:35:34 +00:00

In preparation for a lint rule that disallows empty lines at the end of a file, remove such lines from a number of test files. Refs: https://github.com/nodejs/node/issues/8918 PR-URL: https://github.com/nodejs/node/pull/8920 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
36 lines
913 B
JavaScript
36 lines
913 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const EventEmitter = require('events');
|
|
const assert = require('assert');
|
|
|
|
const ee = new EventEmitter();
|
|
const handler = () => {};
|
|
|
|
assert.strictEqual(ee._events.hasOwnProperty, undefined);
|
|
assert.strictEqual(ee._events.toString, undefined);
|
|
|
|
ee.on('__proto__', handler);
|
|
ee.on('__defineGetter__', handler);
|
|
ee.on('toString', handler);
|
|
|
|
assert.deepStrictEqual(ee.eventNames(), [
|
|
'__proto__',
|
|
'__defineGetter__',
|
|
'toString'
|
|
]);
|
|
|
|
assert.deepStrictEqual(ee.listeners('__proto__'), [handler]);
|
|
assert.deepStrictEqual(ee.listeners('__defineGetter__'), [handler]);
|
|
assert.deepStrictEqual(ee.listeners('toString'), [handler]);
|
|
|
|
ee.on('__proto__', common.mustCall(function(val) {
|
|
assert.strictEqual(val, 1);
|
|
}));
|
|
ee.emit('__proto__', 1);
|
|
|
|
process.on('__proto__', common.mustCall(function(val) {
|
|
assert.strictEqual(val, 1);
|
|
}));
|
|
process.emit('__proto__', 1);
|