testing/doc/use.md

13 lines
216 B
Markdown
Raw Permalink Normal View History

2021-09-05 17:55:39 +00:00
## 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);
});
};
```