0.0.10 • Published 5 years ago

jest-allure-image-snapshot v0.0.10

Weekly downloads
594
License
MIT
Repository
github
Last release
5 years ago

Jest-Allure-Image-Snapshot

Plugin for image comparison use jest-image-snapshots and beateaful allure reports using jest-allure

Installation

yarn add -D jest-allure-image-snapshot

or

npm install --save-dev jest-allure-image-snapshot

You also should configure setupTestFrameworkScriptFile if you don't have yet your own it will look so:

const registerAllureReporter = require("jest-allure/dist/setup").registerAllureReporter;
const registerAllureImageSnapshot = require("jest-allure-image-snapshot");
registerAllureReporter();
registerAllureImageSnapshot();