## Use Syntax is similar to [Jest](https://jestjs.io), and tries to be mostly compatible. ```typescript describe("a module", () => { it("does something", () => { expect(5).toBeGreatherThan(4); }); }; ```