| 492 | class FeatModuleWithEmptyForRoot {} |
| 493 | |
| 494 | @NgModule({ |
| 495 | imports: [ |
| 496 | EffectsModule.forFeature([FeatEffectFromLazyLoadedModuleWithInitAction]), |
| 497 | // should not be loaded because it's already loaded in forRoot |
| 498 | EffectsModule.forFeature([FeatEffectWithInitAction]), |
| 499 | ], |
| 500 | }) |
| 501 | class FeatModuleWithForFeature {} |
| 502 | }); |
nothing calls this directly
no test coverage detected