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