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