
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
jest-image-snapshot
Advanced tools
Jest matcher for screenshot comparisons. Most commonly used for browser visual testing.
Jest matcher that performs image comparisons using pixelmatch and behaves just like Jest snapshots do! Very useful for browser visual comparison testing.
npm i --save-dev jest-image-snapshot
Please note that Jest 20.x.x is a peerDependency. jest-image-snapshot will not work with anything below jest 20.x.x
expect const { toMatchImageSnapshot } = require('jest-image-snapshot');
expect.extend({ toMatchImageSnapshot });
toMatchImageSnapshot() in your tests!it('should demonstrate this matcher`s usage', () => {
...
expect(image).toMatchImageSnapshot();
});
toMatchImageSnapshot() takes an optional options object with the following properties:
customDiffConfig: Custom config passed pixelmatch (See options section)
customSnapshotIdentifier: A custom name to give this snapshot. If not provided one is computed automaticallynoColors: (default false) Removes colouring from console output, useful if storing the results in a file it('should demonstrate this matcher`s usage with a custom pixelmatch config', () => {
...
const customConfig = { threshold: 0.5 };
expect(image).toMatchImageSnapshot({
customDiffConfig: customConfig,
customSnapshotIdentifier: 'customSnapshotName',
noColors: true // the default is false
});
});
Custom defaults can be set with a configurable extension. This will allow for customization of this module's defaults. For example, a 0% default threshold can be shared across all tests with the configuration below.
const { configureToMatchImageSnapshot } = require('jest-image-snapshot');
const customConfig = { threshold: 0 };
const toMatchImageSnapshot = configureToMatchImageSnapshot({
customDiffConfig: customConfig,
noColors: true,
})
expect.extend({ toMatchImageSnapshot });
Given an image (should be either a PNGImage instance or a Buffer instance with PNG data) the toMatchImageSnapshot() matcher will create a __image_snapshots__ directory in the directory the test is in and will store the baseline snapshot image there on the first run.
On subsequent test runs the matcher will compare the image being passed against the stored snapshot.
To update the stored image snapshot run jest with --updateSnapshot or -u argument. All this works the same way as Jest snapshots.
Typically this matcher is used to for visual tests that run on a browser. For example let's say I finish working on a feature and want to write a test to prevent visual regressions:
it('renders correctly', async () => {
const browser = await launchChromeHeadless();
await browser.goTo('https://localhost:3000');
const screenshot = await browser.takeScreenshot();
expect(screenshot).toMatchImageSnapshot();
});
Then after a few days as I finish adding another feature to my component I notice one of my tests failing!
Oh no! I must have introduced a regression! Let's see what the diff looks like to identify what I need to fix:
And now that I know that I broke the card art I can fix it!
Thanks jest-image-snapshot, that broken header would not have looked good in production!
We welcome Your interest in the American Express Open Source Community on Github. Any Contributor to any Open Source Project managed by the American Express Open Source Community must accept and sign an Agreement indicating agreement to the terms below. Except for the rights granted in this Agreement to American Express and to recipients of software distributed by American Express, You reserve all right, title, and interest, if any, in and to Your Contributions. Please fill out the Agreement.
Please feel free to open pull requests and see CONTRIBUTING.md for commit formatting details.
Any contributions made under this project will be governed by the Apache License 2.0.
This project adheres to the American Express Community Guidelines. By participating, you are expected to honor these guidelines.
cypress-image-snapshot is a plugin for Cypress that provides similar functionality to jest-image-snapshot but is designed for use with Cypress end-to-end tests. It allows you to take snapshots of your application and compare them to baseline images.
puppeteer-screenshot-tester is a package that allows you to take screenshots using Puppeteer and compare them to baseline images. It is similar to jest-image-snapshot but is designed to work with Puppeteer for browser automation.
reg-suit is a visual regression testing tool that integrates with various CI/CD pipelines. It provides a comprehensive solution for visual regression testing, including image comparison, reporting, and integration with version control systems. It offers more features and integrations compared to jest-image-snapshot.
FAQs
Jest matcher for image comparisons. Most commonly used for visual regression testing.
The npm package jest-image-snapshot receives a total of 522,428 weekly downloads. As such, jest-image-snapshot popularity was classified as popular.
We found that jest-image-snapshot demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.