felixmosh / bull-board

🎯 Queue background jobs inspector
MIT License
2.14k stars 343 forks source link

nestjs test failed due to unable to resolve dependencies of the BullBoardFeatureModule? #733

Closed zhouyuf6741 closed 2 months ago

zhouyuf6741 commented 2 months ago

Hi I am seeing the following error for a test case that imports a module which is using BullBoardModule.forFeature. and I am getting the follow error, does anyone have an idea of what could have caused this? thanks!

Integration Tests › service should be defined

Nest can't resolve dependencies of the BullBoardFeatureModule (ModuleRef, bull_board_queues, ?). Please make sure that the argument "bull_board_instance" at index [2] is available in the BullBoardFeatureModule context.

Potential solutions:
- Is BullBoardFeatureModule a valid NestJS module?
- If "bull_board_instance" is a provider, is it part of the current BullBoardFeatureModule?
- If "bull_board_instance" is exported from a separate @Module, is that module imported within BullBoardFeatureModule?
  @Module({
    imports: [ /* the Module containing "bull_board_instance" */ ]
  })
AnotherPianist commented 3 weeks ago

I'm having the same problem. How did you fix it?