it("throws if its argument is not iterable", () => {
        const invalidConcat = () => from([]).concat(1);
        expect(invalidConcat).toThrowError("`other` should be iterable");
    });