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.
20 lines
554 B
20 lines
554 B
9 years ago
|
'use strict';
|
||
|
|
||
|
require('../common');
|
||
|
const EventEmitter = require('events');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
const EE = new EventEmitter();
|
||
|
const m = () => {};
|
||
|
EE.on('foo', () => {});
|
||
|
assert.deepStrictEqual(['foo'], EE.eventNames());
|
||
|
EE.on('bar', m);
|
||
|
assert.deepStrictEqual(['foo', 'bar'], EE.eventNames());
|
||
|
EE.removeListener('bar', m);
|
||
|
assert.deepStrictEqual(['foo'], EE.eventNames());
|
||
|
const s = Symbol('s');
|
||
|
EE.on(s, m);
|
||
|
assert.deepStrictEqual(['foo', s], EE.eventNames());
|
||
|
EE.removeListener(s, m);
|
||
|
assert.deepStrictEqual(['foo'], EE.eventNames());
|