First jest test
This commit is contained in:
parent
ad2e7ad196
commit
e585f315bb
1 changed files with 8 additions and 0 deletions
8
src/notcl.test.ts
Normal file
8
src/notcl.test.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
import { parse } from "./notcl";
|
||||
|
||||
describe("Parsing Notcl", () => {
|
||||
describe("Commands", () => {
|
||||
it("Can parse an empty script", () =>
|
||||
expect(parse("")).toEqual([true, []]));
|
||||
});
|
||||
});
|
Loading…
Reference in a new issue