Mirror of datashard/snapshot, a Cypress JSON Snapshot Utiliy Plugin
Find a file
2024-01-25 17:30:16 +01:00
.github Refactor for smaller Size (#8) 2023-03-27 16:05:37 +02:00
cypress chore: remove most code and work based on fixtures 2024-01-25 17:30:16 +01:00
src chore: remove most code and work based on fixtures 2024-01-25 17:30:16 +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 chore: remove most code and work based on fixtures 2024-01-25 17:30:16 +01:00
package-lock.json Find out a Way to redo the success check 2023-11-13 10:27:34 +01:00
package.json remove unused deps and code 2023-12-08 15:56:43 +01:00
README.md chore: remove most code and work based on fixtures 2024-01-25 17:30:16 +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 value / object / DOM element snapshot testing support to Cypress test runner

Changes between @datashard/snapshot and @cypress/snapshot
They're mostly the same, as this is a fork of the Latter, though it's not a drop-in replacement.

Unlike @cypress/snapshot, this saves snapshots in their own files with a sensible default and strives to have ongoing Support for future Cypress Versions

Install

Requires Node version 10 or above.

npm install --save-dev @datashard/snapshot

Import

After installing, you need to add this snippet within your Cypress Support File (default: cypress/support/e2e.{js,ts})

require("@datashard/snapshot").register();

This registers a new command to create new snapshot or compare value to old snapshot

and add the following to your cypress.config.{js,ts}

  e2e: {
    setupNodeEvents(on, config) {
      require("@datashard/snapshot").tasks(on, config)
    },

Note



@datashard/snapshot requires the readFileMaybe plugin to be included, which can be easily done using the code above

Usage

Currently, if you want to take more than one snapshot, you need to pass a Step Name to prevent overwrites / test failures

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");
  });
});

In the above case, you can find the stored snapshot in their own files, mentioned above them

// cypress/fixtures/snapshots/my-tests-works-foo.json
{ "foo": 42 }
// cypress/fixtures/snapshots/my-tests-works-bar.json
{ "bar": 101 }

If you change the site values, the saved snapshot will no longer match, throwing an error

(picture taken from cypress/snapshots/Arrays.json) Snapshot mismatch

Click on the SNAPSHOT step in the Command Log to see expected and current value printed in the DevTools.

Options

You can control snapshot comparison and behavior through a few options.

cy.get(...).snapshot({
  snapshotName: 'Snapshot Name',          // Overwrite the generated Snapshot name
  snapshotPath: 'cypress/fixtures/not_snapshots', // Overwrite where the Snapshot should be stored
  json: false                           // convert DOM elements into JSON
})                                     // when storing in the snapshot file

// will save as
// cypress/not_snapshots/Snapshot-Name.json

You can also pass a "Step Name" to the Function

cy.get(...).snapshot("Intercepted API Request")
// will save as
// cypress/snapshots/<context>-<describe>-<it>-Intercepted-API-Request.json
// to prevent duplications

or both

cy.get(...).snapshot("Intercepted API Request", {
  snapshotPath: "cypress/snapshots/api",
  snapshotName: "first_intercept"
})

// will save as
// cypress/snapshots/api/first_intercept.json

Configuration

This module provides some configuration options:

snapshot.snapshotPath

Sets the default Path for saving Snapshots (default: cypress/snapshots)

Config Screenshot

ENV CYPRESS_UPDATE_SNAPSHOTS

Lets you pass a Env Variable to update failing Tests with the new Data

Small print

Authors:


License: MIT - do anything with the code, but don't blame us if it does not work.

Support: If you find any problems with this module open an issue on Github

MIT License

Copyright (c) 2017-2022 Cypress.io <hello@cypress.io> & Joshua <data@shard.wtf>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.