import { uniq } from "../../src/collections/uniq";

describe("uniq()", () => {
  it("removes duplicate elements", () => {
    expect(uniq([1, 2, 2, 3, 1])).toEqual([1, 2, 3]);
  });
});
