prototype-3x5/src/notcl.test.ts

9 lines
197 B
TypeScript
Raw Normal View History

2023-08-06 06:38:52 +00:00
import { parse } from "./notcl";
describe("Parsing Notcl", () => {
describe("Commands", () => {
it("Can parse an empty script", () =>
expect(parse("")).toEqual([true, []]));
});
});