Failing expect() inside subscribe() does not mark

2019-07-04 16:39发布

We recently upgraded to Angular 6.0.3, RxJs 6.2.0 and jest 23.1.0 (upgrading from RxJS 5 & Angular 4).

There seems to be a problem with Jest & RxJs as failing expect-statements inside a subscribe-Block do not mark the test as failed. Here's a minimal example:

    it("should fail", () => {

        const obs = Observable.create((observer) => {
            observer.next(false);
        });

        obs.subscribe((value) => {
            console.log(value); // => false
            expect(value).toBeTruthy();
        });

    });

The expect-Statement gets executed, but the test still passes. We didn't observe this behaviour with the previous RxJs version and Jest.

标签: jestjs rxjs6
1条回答
一夜七次
2楼-- · 2019-07-04 17:04

Try to use done.

it("should fail", (done) => {

    const obs = Observable.create((observer) => {
        observer.next(false);
    });

    obs.subscribe((value) => {
        console.log(value); // => false
        expect(value).toBeTruthy();
        done();
    });

});

more info

查看更多
登录 后发表回答