First jest test

This commit is contained in:
Tangent Wantwight 2023-08-06 02:38:52 -04:00
parent ad2e7ad196
commit e585f315bb

8
src/notcl.test.ts Normal file
View file

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