@ota-meshi/test-snapshot
v1.0.1
Published
A snapshot testing library similar to jest-snapshot.
Downloads
22
Maintainers
Readme
test-snapshot
A snapshot testing library similar to jest-snapshot.
🚀 Features
- Simple to use.
- Supports mocha.
- Snapshot format similar to jest-snapshot.
💿 Installation
npm install -D @ota-meshi/test-snapshot
📖 Usage
import { expect } from "@ota-meshi/test-snapshot";
it("foo", () => {
expect({ foo: "bar" }).toMatchSnapshot();
});