-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.test.js
45 lines (39 loc) · 1.41 KB
/
index.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import Emitter from '.'
describe('Emitter', () => {
let sub
const callback1 = jest.fn()
const callback2 = jest.fn()
const emitter = new Emitter()
test('should trigger nothing', () => {
emitter.emit('event', 'foo')
expect(callback1).not.toHaveBeenCalled()
})
test('should trigger 1 callback', () => {
sub = emitter.subscribe('event', callback1)
emitter.emit('event', 'foo')
expect(callback1).toHaveBeenCalledTimes(1)
expect(callback1).toHaveBeenCalledWith('foo')
})
test('should trigger 2 callbacks', () => {
emitter.subscribe('event', callback2)
emitter.emit('event', 'bar', 'baz')
expect(callback1).toHaveBeenCalledTimes(2)
expect(callback1).toHaveBeenCalledWith('bar', 'baz')
expect(callback2).toHaveBeenCalledTimes(1)
expect(callback2).toHaveBeenCalledWith('bar', 'baz')
})
test('should release first callback, and call the second', () => {
sub()
emitter.emit('event', 'meow')
expect(callback1).toHaveBeenCalledTimes(2) // same number as before
expect(callback2).toHaveBeenCalledTimes(2)
expect(callback2).toHaveBeenCalledWith('meow')
})
test('should return the return values of all the events in the callstack', () => {
emitter.subscribe('myEvent', () => 1)
emitter.subscribe('myEvent', () => 2)
emitter.subscribe('myEvent', () => true)
const result = emitter.emit('myEvent')
expect(result).toEqual([1, 2, true])
})
})