testing/doc/use.md

216 B

Use

Syntax is similar to Jest, and tries to be mostly compatible.

describe("a module", () => {
  it("does something", () => {
      expect(5).toBeGreatherThan(4);
  });
};