it("throws an error if called on a multiple-element sequence without a condition", () => {
        const bomb = () => from([3, 4]).singleOrDefault();
        expect(bomb).toThrowError("Sequence contains more than one matching element");
    });