Skip to content

rogeliog/jest-serializer-enzyme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jest-serializer-enzyme

This is a serializer for Enzyme backed by enzyme-to-json, I suggest looking at enzyme-to-json for the implementation details

Install it

npm install --save-dev jest-serializer-enzyme

Add it to your jest config

"jest": {
  "snapshotSerializers": ["<rootDir>/node_modules/jest-serializer-enzyme"]
}

More about Jest's snapshotSerializer config here.

Enjoy

import React from 'react';
import { shallow } from 'enzyme';

const Bar = ({ text }) => <p>{text}</p>

const Foo = () => (
  <div>
    <Bar text="The text" />
  </div>
);

it('Renders', () => {
  const wrapper = shallow(<Foo />);
  expect(wrapper).toMatchSnapshot();
});

About

A snapshot serializer for Jest+Enzyme.

Resources

Stars

Watchers

Forks

Packages

No packages published