RxJS first() for Observable.of() - 序列中没有元素
RxJS first() for Observable.of() - no elements in sequence
对于我的测试,我试图用 Observable.of()
模拟一个事件流,但是当我尝试
const actions$ = Observable.of({});
...
// in the function that is tested
actions$
.filter(action => action.type === 'LOAD_REQUEST')
.first()
.subscribe(() => { ... do something });
我收到以下错误
EmptyError: no elements in sequence in xxx.js
只有在我使用 .first()
时才会出现这种情况。
如何模拟事件流以使测试不失败?
对于我的测试,我试图用 Observable.of()
模拟一个事件流,但是当我尝试
const actions$ = Observable.of({});
...
// in the function that is tested
actions$
.filter(action => action.type === 'LOAD_REQUEST')
.first()
.subscribe(() => { ... do something });
我收到以下错误
EmptyError: no elements in sequence in xxx.js
只有在我使用 .first()
时才会出现这种情况。
如何模拟事件流以使测试不失败?