diff --git a/src/notcl.test.ts b/src/notcl.test.ts new file mode 100644 index 0000000..96f7887 --- /dev/null +++ b/src/notcl.test.ts @@ -0,0 +1,8 @@ +import { parse } from "./notcl"; + +describe("Parsing Notcl", () => { + describe("Commands", () => { + it("Can parse an empty script", () => + expect(parse("")).toEqual([true, []])); + }); +});