import { parse } from "./notcl"; describe("Parsing Notcl", () => { describe("Commands", () => { it("Can parse an empty script", () => expect(parse("")).toEqual([true, []])); }); });