Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to test effects with filter of ngrx in Angular 4 5 with Jasmine and Marble

I am now facing a problem. not sure how to test if the action$ with filter operator.

I am also trying to follow the rules of https://github.com/vsavkin/testing_ngrx_effects/tree/309b84883c2709a34ab98b696398332d33c2104f

make it simple, I just set the filter if the length of array is 0 return true.

for example:

loadDatas$: Observable<Action> = this.actions$.ofType(LOAD_DATAS_ACTION).pipe(

withLatestFrom(this.store.select(getDatas), (action, datas) =>datas),

filter(data => !data.length),

switchMap(() => {

console.log(‘run api’);

return this.dataApi.find().pipe(

map((datas: Data[]) => new DatasLoadedAction(datas))

………

…..

so I try to write two test cases, one is

expect(effects.loadDatas$).toBeObservable(expected);

when filter return true.

but I don’t know how to test if the filter return false.

Do you have any suggestion for this ? thank a lot

like image 399
Wei YuTseng Avatar asked Dec 29 '17 11:12

Wei YuTseng


1 Answers

You expect the effect to not return a new action, so you can compare it with an 'empty' observable:

const expected = cold('----');
expect(effects.loadDatas$).toBeObservable(expected);
like image 96
Manduro Avatar answered Sep 19 '22 01:09

Manduro