it("throws if `getIterable` is not a function", () => {
        const bomb = () => from([]).selectMany(1);
        expect(bomb).toThrowError("`getIterable` should be a function");
    });