it("returns the default if `index` is greater than the length of the sequence and it is called with a default value", () => {
            expect(from(yieldFrom([1, 2, 3])).elementAtOrDefault(4, 1)).toBe(1);
        });