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