Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Failing expect() inside subscribe() does not mark test as invalid

Tags:

jestjs

rxjs6

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.

like image 340
Dayasha Avatar asked Dec 24 '22 06:12

Dayasha


1 Answers

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

like image 93
AldrInf Avatar answered May 05 '23 01:05

AldrInf