This is a chai plugin for testing node-style EventEmitters.
- ECMAScript 2020 (Node.js 14+)
-
Install the plugin:
-
Using NPM:
npm install -D chai-eventemitter2
-
Using Yarn:
yarn add -D chai-eventemitter2
-
-
Add this your test setup:
const chai = require('chai'); const eventemitter2 = require('chai-eventemitter2'); chai.use(eventemitter2());
With Expect API:
const emitter = new EventEmitter();
expect(emitter).to.be.an.eventEmitter;
expect(emitter)
.to.emit('foo')
.to.emit('bar', {count: 2})
.to.emit('baz', {withArgs: ['X', 'Y', 'Z']})
.to.emit('error', {count: 0})
.on(() =>
{
emitter.emit('foo');
emitter.emit('bar');
emitter.emit('bar');
emitter.emit('baz', 'X', 'Y', 'Z');
});
Validates if the asserted object is an EventEmitter based on it's properties.
(i.e. it must be an object with on
and emit
methods, etc.)
See an example in the usage section.
Registers an expected event.
-
event: string
The name of the event. -
options.count: number|{min: number?, max: number?}
Determines the number of times the event is expected to be emitted. Can be a fixed amount or a range. [default=1] -
option.argsMatch: 'deep'|'exact'|'soft'
If you pass an array of expected arguments to thewithArgs
option, you can use this option to determine how the actual event arguments will be compared to the expected values.-
'deep'
Makes a deep comparison between the elements of thewithArgs
array and the event arguments. -
'exact'
Makes reference-equality comparison (===
) between each element of thewithArgs
array and the event arguments. -
'soft'
Expects the emitted event to contain the arguments set in thewithArgs
array, but ignores extra arguments. If the array contains objects, search for the object properties in the emitted event arguments but ignores extra properties.This is the default comparison method.
If
withArgs
option is omitted or is not an array, this option is ignored. -
-
options.withArgs: any[]|(...any) => boolean
Used to validate the event arguments. If you pass an array, the plugin will expect the event arguments to match the values of the array. If you pass a callback function, it will be called with the arguments of the event so that you can make complex validations.
Call this method with a callback function with the code that emits events.
The callback will be called and it is expected to emit all the events that were
registered with emit
, otherwise the test fails.
See an example in the usage section.
⚠️ It doesn't handle circular references in thewithArgs
. The test might break if your event arguments have circular references.⚠️ It doesn't work with the "not" flag (.not
). You can work around this issue using thecount
option. (i.e. assert that an event is emitted0
times)⚠️ Not tested for asynchrony.
Inspired by fengb/chai-eventemitter.
MIT