summaryrefslogtreecommitdiff
path: root/includes/external/matrix/node_modules/events/tests/errors.js
blob: a23df437f05d39628251c8fa9dfb72baf72b749e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'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])');