udebella
udebella
Scope of the changes : * Updated dependencies to be up-to-date with last versions. * Added NVM (node version manager) to specify node version to use when working on the...
I wrote that test ```javascript it('allows to register multiple callbacks', () => { const callback = mock.fn(); const callback2 = mock.fn(); const observable = createObservable(); observable.register(callback); observable.register(callback2); observable.notify(); expect(callback).toHaveBeenCalled(); expect(callback2).toHaveBeenCalled();...