GithubHelp home page GithubHelp logo

Comments (8)

DanielMenke avatar DanielMenke commented on July 27, 2024 2

@kamilmysliwiec

Its my bad.

The problem is that by putting EventEmitter2 in the providers list, the emitter provided by EventEmitterModule.forRoot() gets overwritten by a new EventEmitter2 instance without any listeners. Sorry for opening this as a bug.

from event-emitter.

t36campbell avatar t36campbell commented on July 27, 2024 1

@DanielMenke Thank you so much for following up on this, you really helped me out. I did the exact same thing in my event service and it was driving me nuts for days

from event-emitter.

Maligosus avatar Maligosus commented on July 27, 2024

Token EventEmitter2 not initialized provider. EventEmitterModule.forRoot() initialize provider by token EventEmitter2 and return EventEmitter2 instance.

from event-emitter.

kamilmysliwiec avatar kamilmysliwiec commented on July 27, 2024

Please provide a minimum reproduction repository (Git repository/StackBlitz/CodeSandbox project).

from event-emitter.

BruceWayneTheSupermanSlayer avatar BruceWayneTheSupermanSlayer commented on July 27, 2024

@DanielMenke if possible can provide a snippet on how I can use it. I'm trying to a scenario where once the event gets triggered I want to test if the functions registered with @OnEvent gets called. I'm kind of stuck it would be nice if you can provide some snippet on how do did it since my mocks are not emitting the events as well as they don't have any listeners attached to them.

from event-emitter.

DanielMenke avatar DanielMenke commented on July 27, 2024

@BruceWayneTheSupermanSlayer I did it as shown above, with the slight difference that I didn't list the EventEmitter2 class inside my TestingModules provider-Array.

const module: TestingModule = await Test.createTestingModule({
      imports: [EventEmitterModule.forRoot()],
      providers: [RecipesService],
    }).compile()

INSTEAD OF


const module: TestingModule = await Test.createTestingModule({
      imports: [EventEmitterModule.forRoot()],
      providers: [RecipesService, EventEmitter2],
    }).compile()
   

from event-emitter.

BruceWayneTheSupermanSlayer avatar BruceWayneTheSupermanSlayer commented on July 27, 2024

@DanielMenke then how do you call the emit or emitAsync from your test case since it's not part of the provider any more and I actually want to test if we emit the event, the lister gets called . Sorry if this is too dumb question for you.

from event-emitter.

DanielMenke avatar DanielMenke commented on July 27, 2024

I simply use my actual implementation inside my test case and only mock the parts that I don't really care about in the test scenario. This means I just use the functions of the Service that emit something. This way I don't have to explicitly use the eventEmitter inside my test case, it is only used by the service that I want to test. If you mock the parts of your implementation which call the emit functions you would have to supply them with a new Instance of the eventEmitter. I can't tell you how to do that atm.

from event-emitter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.