Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
212
/
root
/
opt
/
nodejs-18
/
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
events
/
tests
/
//proc/212/root/opt/nodejs-18/usr/lib/node_modules/npm/node_modules/events/tests/errors.js
'use strict'; var assert = require('assert'); var EventEmitter = require('../'); var EE = new EventEmitter(); assert.throws(function () { EE.emit('error', 'Accepts a string'); }, 'Error: Unhandled error. (Accepts a string)'); assert.throws(function () { EE.emit('error', { message: 'Error!' }); }, 'Unhandled error. ([object Object])');