UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

14 lines (10 loc) 344 B
'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])');