0.1.0 • Published 8 months ago

daguerreotype v0.1.0

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
8 months ago

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

8 months ago