import "./array";
import { Empty } from "./empty";

it("Creates an empty sequence", () => {
  expect(Empty().array()).toEqual([]);
});
