| 440 | } |
| 441 | |
| 442 | @NgModule({ |
| 443 | imports: [EffectsModule.forFeature()], |
| 444 | providers: [ |
| 445 | UserProvidedEffect2, |
| 446 | { |
| 447 | provide: USER_PROVIDED_EFFECTS, |
| 448 | multi: true, |
| 449 | useValue: [UserProvidedEffect2], |
| 450 | }, |
| 451 | ], |
| 452 | }) |
| 453 | class FeatModuleWithUserProvidedEffects {} |
| 454 | |
| 455 | class FeatEffectWithInitAction implements OnInitEffects { |
| 456 | ngrxOnInitEffects(): Action { |
nothing calls this directly
no test coverage detected