0.1.0 • Published 2 years ago
daguerreotype v0.1.0
Daguerreotype 📸
Daguerreotype is a modern JavaScript library for snapshot testing in JavaScript.
It is currently compatible with Mocha and provides customizable paths for configuration and snapshot output unlike other libraries.
Usage
To get started, install daguerreotype
through npm
(or whatever package manager you use):
npm i daguerreotype
Then in your tests, do
import {deepStrictEqualSnapshot} from 'daguerreotype';
describe(..., () => {
it(..., async () => {
const someData = ...;
deepStrictEqualSnapshot(someData);
})
})
0.1.0
2 years ago