Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@emerson-eps/cypress-image-snapshot
Advanced tools
Cypress Image Snapshot binds [jest-image-snapshot](https://github.com/americanexpress/jest-image-snapshot)'s image diffing logic to [Cypress.io](https://cypress.io) commands.
Cypress Image Snapshot binds jest-image-snapshot's image diffing logic to Cypress.io commands.
jaredpalmer/cypress-image-snapshot
Install with your chosen package manager
# yarn
yarn add --dev @emerson-eps/cypress-image-snapshot
# npm
npm install --save-dev @emerson-eps/cypress-image-snapshot
Next, import the plugin function and add it to the setupNodeEvents
function:
// cypress.config.ts
import {defineConfig} from 'cypress'
import {addMatchImageSnapshotPlugin} from '@emerson-eps/cypress-image-snapshot/plugin'
export default defineConfig({
e2e: {
setupNodeEvents(on) {
addMatchImageSnapshotPlugin(on)
},
},
})
Add the command to your relevant support file:
// cypress/support/e2e.ts
import {addMatchImageSnapshotCommand} from '@emerson-eps/cypress-image-snapshot'
addMatchImageSnapshotCommand()
// can also add any default options to be used
// by all instances of `matchImageSnapshot`
addMatchImageSnapshotCommand({
failureThreshold: 0.2,
})
TypeScript is supported so any reference to @types/cypress-image-snapshot
can be removed from your project
Ensure that the types are included in your tsconfig.json
{
"compilerOptions": {
// ...
},
"include": ["@emerson-eps/cypress-image-snapshot"]
}
describe('Login', () => {
it('should be publicly accessible', () => {
cy.visit('/login');
// snapshot name will be the test title
cy.matchImageSnapshot();
// snapshot name will be the name passed in
cy.matchImageSnapshot('login');
// options object passed in
cy.matchImageSnapshot({
failureThreshold: 0.4
blur: 10
timeout: 3000
});
// match element snapshot
cy.get('#login').matchImageSnapshot();
});
});
The options object combines jest-image-snapshot and Cypress screenshot configuration.
cy.matchImageSnapshot({
// options for jest-image-snapshot
failureThreshold: 0.2,
comparisonMethod: 'ssim',
// options for Cypress.screenshot()
capture: 'viewport',
blackout: ['.some-element'],
})
New options have been implemented to make the function recursive and to retry the snapshots:
cy.matchImageSnapshot({
// Time it takes for the snapshot command to time out if the snapshot is not correct
timeout: 5000,
//Sets a delay between recursive snapshots
delayBetweenTries: 1000,
})
Run Cypress with --env updateSnapshots=true
in order to update the base image files for all of your tests.
Run Cypress with --env requireSnapshots=true
in order to fail if snapshots are missing. This is useful in continuous integration where snapshots should be present in advance.
The workflow of cy.matchImageSnapshot()
when running Cypress is:
cy.screenshot()
named according to the current test.<rootDir>/cypress/snapshots
and if so diff against that snapshot.<rootDir>/cypress/snapshots/__diff_output__
.Tested on Cypress 10.x, 11.x and 12.x
Cypress must be installed as a peer dependency
yarn install
package.json
To make it easier to test whilst developing there are a few simple Cypress tests that validate the plugin. There are two ways to run these tests:
yarn test:open
In open mode the tests run in Electron and ignore any snapshot failures. This is due to the rendering differences on developer machines vs CI. Here there is also verbose output sent to the test runner console to aid debugging.
Note here that the yarn script above will re-build the plugin each time. This is
necessary because the tests are run against the output in the dist
directory
to ensure parity between the built package on NPM.
Ensure that the command is run each time changes need to be tested in Cypress
yarn docker:build
yarn docker:run
The commands here ensure that the tests are run inside a Docker container that matches the CI machine. This allows images to be generated and matched correctly when running the tests in Github Actions.
It is necessary to have two environment variables defined by default before running the tests in Docker:
CYPRESS_updateSnapshots=false
CYPRESS_debugSnapshots=false
It's recommended that these are loaded into the shell with something like direnv
Then they can be overridden as needed:
CYPRESS_updateSnapshots=true yarn docker:run
@simonsmith/cypress-image-snapshot
This is a rewrite of the plugin from Simon Smith.
FAQs
Cypress Image Snapshot binds [jest-image-snapshot](https://github.com/americanexpress/jest-image-snapshot)'s image diffing logic to [Cypress.io](https://cypress.io) commands.
We found that @emerson-eps/cypress-image-snapshot 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.