Mirror of datashard/snapshot, a Cypress JSON Snapshot Utiliy Plugin
Find a file
2024-02-05 16:25:50 +01:00
.github redo a surprising amount of things 2024-01-31 19:49:52 +01:00
.vscode mass changes 2024-01-29 19:08:06 +01:00
cypress move prettyprint log into register.js 2024-02-05 16:17:41 +01:00
src remove export from createCustomLog function 2024-02-05 16:25:50 +01:00
.gitignore make devtoolslog a let because it breaks code @ work 2023-03-28 12:41:33 +02:00
.npmignore add workflows to npm ignore 2023-03-27 16:18:04 +02:00
.npmrc fix not being able to push 2023-03-18 11:01:43 +01:00
cypress.config.js redo a surprising amount of things 2024-01-31 19:49:52 +01:00
LICENSE redo a surprising amount of things 2024-01-31 19:49:52 +01:00
package-lock.json bump cypress and redo logging 2024-02-01 11:58:42 +01:00
package.json bump cypress and redo logging 2024-02-01 11:58:42 +01:00
README.md redo a surprising amount of things 2024-01-31 19:49:52 +01:00
renovate.json Commit changes: update package name, remove Travis config, and modify snapshot-spec.js 2023-02-20 20:14:01 +01:00

@datashard/snapshot

Adds support for Value, Object, and Dom Element Snapshot Testing to Cypress

Breaking Changes

Warning

The readFileMaybe task was required in previous Versions, this has been changed so this Module now uses the cy.fixture Command to get the contents of existing files. This means that this module will only be able to write new tests if updateSnapshots (previously SNAPSHOT_UPDATE) is set to true through Environment Variables or through the Cypress config.
This also means, that previous tests will likely be broken, please make sure that your tests pass before updating to the latest version of this module

Install

Requires Node 16 or above

npm i --save-dev @datashard/snapshot

Import

After Installing, you'll need to add the following import into your Commands/Support File

by default this will be cypress/support/e2e.js

require('@datashard/snapshot').regsiter()

This will register a new Command .snapshot(), to create new Snapshots and once created, to compare their Values.

Config

You can pass updateSnapshots and useFolders as options in the cypress.config.js file

Alternatively, you can also add snapshotUpdate as an Environment Variable to update your snapshots.

Simply pass --env updateSnapshots=true when running Cypress.

If you don't use the default fixture folder, you will also need to add snapshotPath to this module's config with the same path you use for fixtureFolder.

Usage

If properly added, usage of this plugin is rather simple, simply add .snapshot() to cypress functions that return valid JSON.

Example

describe("my tests", () => {
  it("works", () => {
    cy.log("first snapshot");
    cy.wrap({ foo: 42 }).snapshot("foo");
    cy.log("second snapshot");
    cy.wrap({ bar: 101 }).snapshot("bar");
  });
});

Depending on your settings, this module will then save your snapshots as

// useFolders: false
cypress/fixtures/snapshots/my-tests__works__foo.json
cypress/fixtures/snapshots/my-tests__works__bar.json

// useFolders: true
cypress/fixtures/snapshots/my-tests/works/foo.json
cypress/fixtures/snapshots/my-tests/works/bar.json

Snapshots will generally be saved using this convention, provided by Cypress:

{fixtureFolder}/<Context>-<Describe>-<It>-<Name?>.json
{fixtureFolder}/<Context>/<Describe>/<It>/<Name?>.json

If a step wasn't named, it will instead use the <It>for the file name, though this means that you will not be able to have more than 1 Snapshot in your It Block, as it would overwrite the previously created Snapshot files.

Of course, if a value changed, it will no longer match the snapshot and throw an Error.