Socket
Socket
Sign inDemoInstall

cypress-diff

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cypress-diff

The library highlights the difference between the expected and actual values in the Cypress Test Runner UI.


Version published
Weekly downloads
17K
decreased by-7.7%
Maintainers
1
Weekly downloads
 
Created
Source

cypress-diff

npm

cypress-diff

Keep in mind that it's still in beta. Please, report any issues you find. Moreover, this library is designed to work with texts and objects.

Installation

npm i -D cypress-diff

Usage

Add the following line to your cypress/support/e2e.js file:

JavaScript

// cypress/support/e2e.js
require('cypress-diff');

TypeScript

// cypress/support/e2e.ts
import 'cypress-diff';

Configuration (optional)

In case you are using a Cypress.on('fail') handler in your tests already then you can configure the plugin like this:

// cypress/support/e2e.js
const { onFailHandler } = require('cypress-diff');

Cypress.on('fail', (error, runnable) => {
  // ...
  onFailHandler(error, runnable);
  // ...
});

License

MIT

Author

Yevhen Laichenkov elaichenkov@gmail.com

Keywords

FAQs

Package last updated on 24 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc