Component logic
this.actions$
.pipe(
ofActionSuccessful(ProjectLoad),
switchMap(() => interval(10000))
)
.subscribe(() => this.store.dispatch(new ProjecRefresh));
I'd like to test that ProjecRefresh is dispatched after dispatching ProjectLoad and I don't have any idea of how to do it