it("throws an error if `index` is not a number", () => {
            expect(() => from([1, 2, 3]).elementAt(false)).toThrowError("`index` should be a number");
        });