0.7.0 • Published 8 years ago
jest-puppe-shots-preset v0.7.0
jest-puppe-shots-preset
A Jest plugin for creating screenshots of React components with a little help of Puppeteer
How it works?
This is the Jest preset for the jest-puppe-shots package.
Check the README to get more information how to use the plugin.
Installation
You can install the plugin using NPM:
npm install jest-puppe-shots-preset --save-devor by Yarn:
yarn add jest-puppe-shots-preset --devJest Configuration
Before starting using the jest-puppe-shots-preset you will need to change your Jest configuration file.
Open the jest.config.json file in your project and add additional entry:
{
"preset": "jest-puppe-shots-preset"
}If you are are using the jest.config.js file, then instead adjust your configuration like this:
module.exports = {
// You config goes here
preset: 'jest-puppe-shots-preset'
}