Claudio Suardi
Results
2
comments of
Claudio Suardi
I'm in a similar situation but the `@Select` is inside a State. Is it possible to use a similar approach starting from a State TestBed? ``` TestBed.configureTestingModule({ providers: [ ......
Sorry, I just found a solution: ``` state = TestBed.get(MyAwesomeState); Object.defineProperty(state, 'prop$', { writable: true }); state.prop$ = of('value); ```