A snapshot testing library similar to jest-snapshot.
- Simple to use.
- Supports mocha.
- Snapshot format similar to jest-snapshot.
npm install -D @ota-meshi/test-snapshot
import { expect } from "@ota-meshi/test-snapshot";
it("foo", () => {
expect({ foo: "bar" }).toMatchSnapshot();
});