﻿describe("Union", function () {
    it("Union", function () {
        expect([1].Union([1, 2])).toEqual([1, 2]);
    });
});