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.
22 lines
562 B
22 lines
562 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const sym = Symbol();
|
|
|
|
process.on('normal', common.mustCall((data) => {
|
|
assert.strictEqual(data, 'normalData');
|
|
}));
|
|
|
|
process.on(sym, common.mustCall((data) => {
|
|
assert.strictEqual(data, 'symbolData');
|
|
}));
|
|
|
|
process.on('SIGPIPE', common.mustCall((data) => {
|
|
assert.strictEqual(data, 'signalData');
|
|
}));
|
|
|
|
process.emit('normal', 'normalData');
|
|
process.emit(sym, 'symbolData');
|
|
process.emit('SIGPIPE', 'signalData');
|
|
|
|
assert.strictEqual(isNaN(process._eventsCount), false);
|
|
|