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.
21 lines
499 B
21 lines
499 B
9 years ago
|
'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');
|