????

Your IP : 3.139.64.23


Current Path : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/node_modules/events/tests/
Upload File :
Current File : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/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])');