summaryrefslogtreecommitdiff
path: root/test/parallel/test-event-emitter-errors.js
blob: ef2bbee93f8bfdb3a10424cce86e6fc7cc0ba4a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'use strict';
const common = require('../common');
const EventEmitter = require('events');

const EE = new EventEmitter();

common.expectsError(
  () => EE.emit('error', 'Accepts a string'),
  {
    code: 'ERR_UNHANDLED_ERROR',
    type: Error,
    message: 'Unhandled error. (Accepts a string)'
  }
);

common.expectsError(
  () => EE.emit('error', { message: 'Error!' }),
  {
    code: 'ERR_UNHANDLED_ERROR',
    type: Error,
    message: 'Unhandled error. ([object Object])'
  }
);