Redis – Mocking Bull queues in NestJS
I am trying to test that after sending a request to one of my controllers, the queue pushes a job. The implementation itself works as expected. This is my app.module.ts @Module({ imports: [ HttpModule, TypeOrmModule.forRoot(typeOrmConfig), BullModule.forRoot({ redis: { host: redisConfig.host,…