()
| 28 | it(".on() should properly register listeners", function () { |
| 29 | (emitter._callbacks === undefined).should.be.true; |
| 30 | let callback = function () {}; |
| 31 | let callback2 = function () {}; |
| 32 | emitter.on("test", callback); |
| 33 | emitter.on("test", callback2); |
no outgoing calls
no test coverage detected
searching dependent graphs…