1.0.1 • Published 1 year ago
@ota-meshi/test-snapshot v1.0.1
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();
});