Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
cypress-lens
Advanced tools
Join us, we're hiring.
Based on Cypress Visual Regression
Module for visual regression testing and reporting for Cypress.
Install:
$ npm install cypress-lens
Add the following config to your cypress.config.js file:
const { defineConfig } = require("cypress");
const getCompareSnapshotsPlugin = require("cypress-lens/dist/plugin");
module.exports = defineConfig({
screenshotsFolder: "./cypress/snapshots/actual",
trashAssetsBeforeRuns: true,
video: false,
e2e: {
setupNodeEvents(on, config) {
getCompareSnapshotsPlugin(on, config);
},
},
});
Add the command to cypress/support/commands.js:
const compareSnapshotCommand = require("cypress-lens/dist/command");
compareSnapshotCommand();
Make sure you import commands.js in cypress/support/e2e.js:
import "./commands";
cypress/tsconfig.json
{
"compilerOptions": {
"types": ["cypress", "cypress-lens"]
}
}
Install cypress-multi-reporters: This plugin allows us to use more than one reporters since we want to keep the cypress default spec reports.
$ npm install cypress-multi-reporters
Create reporter-config.json and place the following code
{
"reporterEnabled": "spec, cypress-lens"
}
Add the following config to your cypress.config.js file:
const { defineConfig } = require("cypress");
const getCompareSnapshotsPlugin = require("cypress-lens/dist/plugin");
module.exports = defineConfig({
screenshotsFolder: "./cypress/snapshots/actual",
trashAssetsBeforeRuns: true,
video: false,
e2e: {
reporter: "cypress-multi-reporters",
reporterOptions: {
configFile: "reporter-config.json",
},
setupNodeEvents(on, config) {
getCompareSnapshotsPlugin(on, config);
},
},
});
it("Should display the home page according to baseline snapshot", () => {
cy.visit("www.dreamshot.bg");
cy.compareSnapshot("home-page");
});
failSilently
is enabled by default. Add the following config to your cypress.config.js file to see the errors:
{
env: {
failSilently: false;
}
}
You can also pass default arguments to compareSnapshotCommand()
:
const compareSnapshotCommand = require("cypress-visual-regression/dist/command");
compareSnapshotCommand({
capture: "fullPage",
});
These will be used by default when no parameters are passed to the compareSnapshot command.
$ ./node_modules/.bin/cypress run --env type=base"
$ ./node_modules/.bin/cypress run --env type=actual
FAQs
Module for visual regression testing and reporting in Cypress
We found that cypress-lens demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.